pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.zheng</groupId>
  6. <artifactId>zheng-qa</artifactId>
  7. <version>1.0.0</version>
  8. </parent>
  9. <artifactId>zheng-qa-service</artifactId>
  10. <packaging>jar</packaging>
  11. <name>zheng-qa-service</name>
  12. <url>http://www.zhangshuzheng.cn</url>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>junit</groupId>
  19. <artifactId>junit</artifactId>
  20. <version>4.12</version>
  21. <scope>test</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.zheng</groupId>
  25. <artifactId>zheng-qa-dao</artifactId>
  26. <version>1.0.0</version>
  27. <type>jar</type>
  28. </dependency>
  29. <!-- servlet -->
  30. <dependency>
  31. <groupId>javax.servlet</groupId>
  32. <artifactId>servlet-api</artifactId>
  33. <version>2.5</version>
  34. <scope>provided</scope>
  35. </dependency>
  36. </dependencies>
  37. <build>
  38. <finalName>qa-service</finalName>
  39. <resources>
  40. <resource>
  41. <directory>src/main/java</directory>
  42. <includes>
  43. <include>**/*.xml</include>
  44. </includes>
  45. <filtering>true</filtering>
  46. </resource>
  47. <resource>
  48. <directory>src/main/resources</directory>
  49. </resource>
  50. </resources>
  51. <plugins>
  52. <plugin>
  53. <groupId>org.apache.maven.plugins</groupId>
  54. <artifactId>maven-surefire-plugin</artifactId>
  55. <version>2.18.1</version>
  56. <configuration>
  57. <!--是否跳过单元测试-->
  58. <skipTests>true</skipTests>
  59. <!--是否忽略单元测试错误-->
  60. <testFailureIgnore>true</testFailureIgnore>
  61. </configuration>
  62. </plugin>
  63. </plugins>
  64. </build>
  65. </project>