1
1

pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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-pay</artifactId>
  7. <version>1.0.0</version>
  8. </parent>
  9. <artifactId>zheng-pay-sdk</artifactId>
  10. <packaging>jar</packaging>
  11. <name>zheng-pay-sdk</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-pay-rpc-api</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>zheng-pay-sdk</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. <skipTests>true</skipTests>
  58. <testFailureIgnore>true</testFailureIgnore>
  59. </configuration>
  60. </plugin>
  61. </plugins>
  62. </build>
  63. </project>