pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <packaging>jar</packaging>
  6. <parent>
  7. <artifactId>4dkankan-parent</artifactId>
  8. <groupId>com.fdkankan</groupId>
  9. <version>2.0.0</version>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>4dkankan-pay</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.projectlombok</groupId>
  16. <artifactId>lombok</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.alipay</groupId>
  20. <artifactId>alipay-sdk-java</artifactId>
  21. <version>20170324180803</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.alipay</groupId>
  25. <artifactId>alipay-trade-sdk</artifactId>
  26. <version>20161215</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.apache.commons</groupId>
  30. <artifactId>commons-lang3</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework</groupId>
  34. <artifactId>spring-context</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.google.zxing</groupId>
  38. <artifactId>core</artifactId>
  39. <version>2.1</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.google.code.gson</groupId>
  43. <artifactId>gson</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>commons-configuration</groupId>
  47. <artifactId>commons-configuration</artifactId>
  48. <version>1.10</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.paypal.sdk</groupId>
  52. <artifactId>rest-api-sdk</artifactId>
  53. <version>1.14.0</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>javax.servlet</groupId>
  57. <artifactId>javax.servlet-api</artifactId>
  58. <scope>provided</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework</groupId>
  62. <artifactId>spring-tx</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.alibaba</groupId>
  66. <artifactId>fastjson</artifactId>
  67. </dependency>
  68. </dependencies>
  69. <distributionManagement>
  70. <repository>
  71. <!-- 这里的ID要和setting的id一致 -->
  72. <id>releases</id>
  73. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
  74. </repository>
  75. <!--这是打成快照版本的配置 -->
  76. <snapshotRepository>
  77. <id>snapshots</id>
  78. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  79. </snapshotRepository>
  80. </distributionManagement>
  81. <build>
  82. <plugins>
  83. <plugin>
  84. <groupId>org.apache.maven.plugins</groupId>
  85. <artifactId>maven-compiler-plugin</artifactId>
  86. <configuration>
  87. <source>${java.version}</source>
  88. <target>${java.version}</target>
  89. <encoding>${project.build.sourceEncoding}</encoding>
  90. </configuration>
  91. </plugin>
  92. </plugins>
  93. <resources>
  94. <resource>
  95. <directory>src/main/resources</directory>
  96. <filtering>true</filtering>
  97. </resource>
  98. <resource>
  99. <directory>src/main/java</directory>
  100. <includes>
  101. <include>**/*.xml</include>
  102. </includes>
  103. </resource>
  104. </resources>
  105. </build>
  106. </project>