123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.webjars</groupId>
- <artifactId>blue_theme</artifactId>
- <packaging>jar</packaging>
- <name>blue_theme</name>
- <url>http://webjars.org</url>
- <parent>
- <groupId>cn.com.taiji</groupId>
- <artifactId>cn.com.taiji.zyml</artifactId>
- <version>1.0.0</version>
- </parent>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.sonatype.oss</groupId>
- <artifactId>oss-parent</artifactId>
- <version>7</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
-
- <licenses>
- <license>
- <name>Apache License, Version 2.0</name>
- <url>http://www.apache.org/licenses/LICENSE-2.0</url>
- <distribution>repo</distribution>
- </license>
- </licenses>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <upstreamVersion>0.0.1</upstreamVersion>
- <destDir>${project.build.outputDirectory}/META-INF/resources/</destDir>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>wagon-maven-plugin</artifactId>
- <version>1.0-beta-4</version>
- </plugin>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-release-plugin</artifactId>
- </plugin>
- </plugins>
- <resources>
- <resource>
- <directory>${project.basedir}/src/main/resources</directory>
- <targetPath>${destDir}</targetPath>
- </resource>
- </resources>
- </build>
- <version>1.0.0</version>
- </project>
|