1
1

pom.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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-message</artifactId>
  7. <version>1.0.0</version>
  8. </parent>
  9. <artifactId>zheng-message-sdk</artifactId>
  10. <packaging>jar</packaging>
  11. <name>zheng-message-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>org.apache.httpcomponents</groupId>
  19. <artifactId>httpclient</artifactId>
  20. <version>4.5.5</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.alibaba</groupId>
  24. <artifactId>fastjson</artifactId>
  25. <version>1.2.47</version>
  26. </dependency>
  27. </dependencies>
  28. <build>
  29. <finalName>zheng-message-sdk</finalName>
  30. <resources>
  31. <resource>
  32. <directory>src/main/java</directory>
  33. <includes>
  34. <include>**/*.xml</include>
  35. </includes>
  36. <filtering>true</filtering>
  37. </resource>
  38. <resource>
  39. <directory>src/main/resources</directory>
  40. </resource>
  41. </resources>
  42. <plugins>
  43. <plugin>
  44. <groupId>org.apache.maven.plugins</groupId>
  45. <artifactId>maven-surefire-plugin</artifactId>
  46. <version>2.18.1</version>
  47. <configuration>
  48. <skipTests>true</skipTests>
  49. <testFailureIgnore>true</testFailureIgnore>
  50. </configuration>
  51. </plugin>
  52. </plugins>
  53. </build>
  54. </project>