pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.itstyle.pay</groupId>
  5. <artifactId>spring-boot-pay</artifactId>
  6. <packaging>jar</packaging>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>spring-boot-pay</name>
  9. <url>http://maven.apache.org</url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. </properties>
  13. <!-- spring-boot-starter-parent包含了大量配置好的依赖管理,在自己项目添加这些依赖的时候不需要写<version>版本号 -->
  14. <parent>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-parent</artifactId>
  17. <version>1.5.2.RELEASE</version>
  18. <relativePath/> <!-- lookup parent from repository -->
  19. </parent>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-web</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-test</artifactId>
  32. <scope>test</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  37. </dependency>
  38. <!-- 热部署 -->
  39. <dependency>
  40. <groupId>org.springframework</groupId>
  41. <artifactId>springloaded</artifactId>
  42. </dependency>
  43. <!-- 支付宝 SDK(项目中的支付宝SDk需要自行去官网下载打入本地仓库或者私服)-->
  44. <dependency>
  45. <groupId>com.acts</groupId>
  46. <artifactId>alipay-trade-sdk</artifactId>
  47. <version>1.0.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.acts</groupId>
  51. <artifactId>alipay-sdk-java</artifactId>
  52. <version>1.0.0</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.commons</groupId>
  56. <artifactId>commons-lang3</artifactId>
  57. <version>3.6</version>
  58. </dependency>
  59. <!-- json-lib -->
  60. <dependency>
  61. <groupId>net.sf.json-lib</groupId>
  62. <artifactId>json-lib</artifactId>
  63. <version>2.4</version>
  64. </dependency>
  65. <!-- commons-configuration -->
  66. <dependency>
  67. <groupId>commons-configuration</groupId>
  68. <artifactId>commons-configuration</artifactId>
  69. <version>1.10</version>
  70. </dependency>
  71. <!--gson -->
  72. <dependency>
  73. <groupId>com.google.code.gson</groupId>
  74. <artifactId>gson</artifactId>
  75. </dependency>
  76. <!-- zxing -->
  77. <dependency>
  78. <groupId>com.google.zxing</groupId>
  79. <artifactId>core</artifactId>
  80. <version>3.2.1</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>net.sourceforge.nekohtml</groupId>
  84. <artifactId>nekohtml</artifactId>
  85. </dependency>
  86. <!--jdom -->
  87. <dependency>
  88. <groupId>jdom</groupId>
  89. <artifactId>jdom</artifactId>
  90. <version>1.1</version>
  91. </dependency>
  92. <!--httpclient -->
  93. <dependency>
  94. <groupId>org.apache.httpcomponents</groupId>
  95. <artifactId>httpclient</artifactId>
  96. <version>4.3.4</version><!--$NO-MVN-MAN-VER$-->
  97. </dependency>
  98. <!-- dom4j -->
  99. <dependency>
  100. <groupId>dom4j</groupId>
  101. <artifactId>dom4j</artifactId>
  102. <version>1.6.1</version><!--$NO-MVN-MAN-VER$-->
  103. </dependency>
  104. <!-- bcprov-jdk16 -->
  105. <dependency>
  106. <groupId>org.bouncycastle</groupId>
  107. <artifactId>bcprov-jdk16</artifactId>
  108. <version>1.46</version>
  109. </dependency>
  110. </dependencies>
  111. <build>
  112. <finalName>spring-boot-pay</finalName>
  113. <plugins>
  114. <!-- 打包项目 mvn clean package -->
  115. <plugin>
  116. <groupId>org.springframework.boot</groupId>
  117. <artifactId>spring-boot-maven-plugin</artifactId>
  118. <dependencies>
  119. <!-- mvn spring-boot:run 热部署启动 -->
  120. <dependency>
  121. <groupId>org.springframework</groupId>
  122. <artifactId>springloaded</artifactId>
  123. <version>1.2.7.RELEASE</version>
  124. </dependency>
  125. </dependencies>
  126. </plugin>
  127. </plugins>
  128. </build>
  129. </project>