|
|
@@ -1,71 +0,0 @@
|
|
|
-<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>
|
|
|
-
|
|
|
- <parent>
|
|
|
- <groupId>com.zheng</groupId>
|
|
|
- <artifactId>zheng-upms</artifactId>
|
|
|
- <version>1.0.0</version>
|
|
|
- </parent>
|
|
|
-
|
|
|
- <artifactId>zheng-upms-service</artifactId>
|
|
|
- <packaging>jar</packaging>
|
|
|
-
|
|
|
- <name>zheng-upms-service</name>
|
|
|
- <url>http://www.zhangshuzheng.cn</url>
|
|
|
-
|
|
|
- <properties>
|
|
|
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
- </properties>
|
|
|
-
|
|
|
- <dependencies>
|
|
|
- <dependency>
|
|
|
- <groupId>junit</groupId>
|
|
|
- <artifactId>junit</artifactId>
|
|
|
- <version>4.12</version>
|
|
|
- <scope>test</scope>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>com.zheng</groupId>
|
|
|
- <artifactId>zheng-upms-dao</artifactId>
|
|
|
- <version>1.0.0</version>
|
|
|
- <type>jar</type>
|
|
|
- </dependency>
|
|
|
- <!-- servlet -->
|
|
|
- <dependency>
|
|
|
- <groupId>javax.servlet</groupId>
|
|
|
- <artifactId>servlet-api</artifactId>
|
|
|
- <version>2.5</version>
|
|
|
- <scope>provided</scope>
|
|
|
- </dependency>
|
|
|
- </dependencies>
|
|
|
-
|
|
|
- <build>
|
|
|
- <finalName>zheng-upms-service</finalName>
|
|
|
- <resources>
|
|
|
- <resource>
|
|
|
- <directory>src/main/java</directory>
|
|
|
- <includes>
|
|
|
- <include>**/*.xml</include>
|
|
|
- </includes>
|
|
|
- <filtering>true</filtering>
|
|
|
- </resource>
|
|
|
- <resource>
|
|
|
- <directory>src/main/resources</directory>
|
|
|
- </resource>
|
|
|
- </resources>
|
|
|
- <plugins>
|
|
|
- <plugin>
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
- <artifactId>maven-surefire-plugin</artifactId>
|
|
|
- <version>2.18.1</version>
|
|
|
- <configuration>
|
|
|
- <!--是否跳过单元测试-->
|
|
|
- <skipTests>true</skipTests>
|
|
|
- <!--是否忽略单元测试错误-->
|
|
|
- <testFailureIgnore>true</testFailureIgnore>
|
|
|
- </configuration>
|
|
|
- </plugin>
|
|
|
- </plugins>
|
|
|
- </build>
|
|
|
-</project>
|