rebuild/pom.xml
devezhao-corp 6474e277df init
2018-05-18 11:51:45 +08:00

47 lines
1.2 KiB
XML

<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>cn.devezhao</groupId>
<artifactId>re-build</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>re-build</name>
<url>http://github.com/devezhao/re-build</url>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/devezhao/re-build/issues</url>
</issueManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<argLine>-Dfile.encoding=UTF-8</argLine>
</properties>
<build>
<finalName>re-build</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>