pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.wechat</groupId>
  6. <artifactId>WeChatPayProject</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>WeChatPayProject</name>
  9. <!-- FIXME change it to the project's website -->
  10. <!-- <url>http://www.example.com</url> -->
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <maven.compiler.source>1.8</maven.compiler.source>
  14. <maven.compiler.target>1.8</maven.compiler.target>
  15. </properties>
  16. <parent>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-parent</artifactId>
  19. <version>2.1.4.RELEASE</version>
  20. <relativePath /> <!-- lookup parent from repository -->
  21. </parent>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.ibeetl</groupId>
  29. <artifactId>beetl-framework-starter</artifactId>
  30. <version>1.2.14.RELEASE</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-data-jpa</artifactId>
  35. <exclusions>
  36. <exclusion>
  37. <groupId>org.apache.tomcat</groupId>
  38. <artifactId>tomcat-jdbc</artifactId>
  39. </exclusion>
  40. </exclusions>
  41. </dependency>
  42. <!--MySQL JDBC驱动 -->
  43. <dependency>
  44. <groupId>mysql</groupId>
  45. <artifactId>mysql-connector-java</artifactId>
  46. <!-- <scope>runtime</scope> -->
  47. </dependency>
  48. <!--连接池HikariCP -->
  49. <dependency>
  50. <groupId>com.zaxxer</groupId>
  51. <artifactId>HikariCP</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.commons</groupId>
  55. <artifactId>commons-pool2</artifactId>
  56. </dependency>
  57. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  58. <dependency>
  59. <groupId>com.squareup.okhttp3</groupId>
  60. <artifactId>okhttp</artifactId>
  61. <version>4.2.2</version>
  62. </dependency>
  63. <!-- https://mvnrepository.com/artifact/org.apache.directory.studio/org.apache.commons.codec -->
  64. <dependency>
  65. <groupId>org.apache.directory.studio</groupId>
  66. <artifactId>org.apache.commons.codec</artifactId>
  67. <version>1.8</version>
  68. </dependency>
  69. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  70. <dependency>
  71. <groupId>com.alibaba</groupId>
  72. <artifactId>fastjson</artifactId>
  73. <version>1.2.62</version>
  74. </dependency>
  75. <!--ftp-->
  76. <dependency>
  77. <groupId>commons-net</groupId>
  78. <artifactId>commons-net</artifactId>
  79. <version>3.3</version>
  80. </dependency>
  81. <!-- swagger2 -->
  82. <dependency>
  83. <groupId>io.springfox</groupId>
  84. <artifactId>springfox-swagger2</artifactId>
  85. <version>2.8.0</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>io.springfox</groupId>
  89. <artifactId>springfox-swagger-ui</artifactId>
  90. <version>2.8.0</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.apache.httpcomponents</groupId>
  94. <artifactId>httpclient</artifactId>
  95. <version>4.5.10</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.apache.httpcomponents</groupId>
  99. <artifactId>httpcore</artifactId>
  100. <version>4.4.10</version>
  101. </dependency>
  102. </dependencies>
  103. <build>
  104. <pluginManagement><!-- lock down plugins versions to avoid using Maven
  105. defaults (may be moved to parent pom) -->
  106. <plugins>
  107. <plugin>
  108. <groupId>org.springframework.boot</groupId>
  109. <artifactId>spring-boot-maven-plugin</artifactId>
  110. <executions>
  111. <execution>
  112. <goals>
  113. <goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中 -->
  114. </goals>
  115. </execution>
  116. </executions>
  117. </plugin>
  118. </plugins>
  119. </pluginManagement>
  120. </build>
  121. </project>