pom.xml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.szwl</groupId>
  7. <artifactId>wxServer</artifactId>
  8. <version>0.0.1</version>
  9. <packaging>jar</packaging>
  10. <name>wxServer</name>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>2.3.12.RELEASE</version>
  15. </parent>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <java.version>1.8</java.version>
  20. <spring-cloud.version>Hoxton.SR12</spring-cloud.version>
  21. <!-- <mybatis-spring-boot-starter.version>2.2.0</mybatis-spring-boot-starter.version>-->
  22. <mybatis-plus.version>3.4.0</mybatis-plus.version>
  23. <mybatis.version>3.5.7</mybatis.version>
  24. </properties>
  25. <dependencyManagement>
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.springframework.cloud</groupId>
  29. <artifactId>spring-cloud-dependencies</artifactId>
  30. <version>${spring-cloud.version}</version>
  31. <type>pom</type>
  32. <scope>import</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.mybatis</groupId>
  36. <artifactId>mybatis</artifactId>
  37. <version>${mybatis.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.baomidou</groupId>
  41. <artifactId>mybatis-plus-boot-starter</artifactId>
  42. <version>${mybatis-plus.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.baomidou</groupId>
  46. <artifactId>mybatis-plus-generator</artifactId>
  47. <version>${mybatis-plus.version}</version>
  48. </dependency>
  49. <!-- <dependency>-->
  50. <!-- <groupId>org.mybatis.spring.boot</groupId>-->
  51. <!-- <artifactId>mybatis-spring-boot-starter</artifactId>-->
  52. <!-- <version>${mybatis-spring-boot-starter.version}</version>-->
  53. <!-- </dependency>-->
  54. </dependencies>
  55. </dependencyManagement>
  56. <dependencies>
  57. <!-- springcloud组件 start -->
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-web</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.cloud</groupId>
  64. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.cloud</groupId>
  68. <artifactId>spring-cloud-starter-openfeign</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.cloud</groupId>
  72. <artifactId>spring-cloud-starter-config</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-actuator</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-test</artifactId>
  81. <scope>test</scope>
  82. </dependency>
  83. <!-- <dependency>-->
  84. <!-- <groupId>org.springframework.boot</groupId>-->
  85. <!-- <artifactId>spring-boot-starter-jdbc</artifactId>-->
  86. <!-- </dependency>-->
  87. <!-- springcloud组件 end -->
  88. <dependency>
  89. <groupId>org.projectlombok</groupId>
  90. <artifactId>lombok</artifactId>
  91. </dependency>
  92. <!-- mybatis-plus -->
  93. <dependency>
  94. <groupId>com.baomidou</groupId>
  95. <artifactId>mybatis-plus-boot-starter</artifactId>
  96. </dependency>
  97. <!--mybatisplus代码生成 start -->
  98. <dependency>
  99. <groupId>com.baomidou</groupId>
  100. <artifactId>mybatis-plus-generator</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.velocity</groupId>
  104. <artifactId>velocity-engine-core</artifactId>
  105. <version>2.2</version>
  106. </dependency>
  107. <!--mybatisplus代码生成 end -->
  108. <dependency>
  109. <groupId>mysql</groupId>
  110. <artifactId>mysql-connector-java</artifactId>
  111. </dependency>
  112. <!-- swagger2 -->
  113. <dependency>
  114. <groupId>com.github.xiaoymin</groupId>
  115. <artifactId>knife4j-spring-boot-starter</artifactId>
  116. <version>3.0.3</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>ch.ethz.ganymed</groupId>
  120. <artifactId>ganymed-ssh2</artifactId>
  121. <version>build210</version>
  122. </dependency>
  123. <!-- json -->
  124. <dependency>
  125. <groupId>com.alibaba</groupId>
  126. <artifactId>fastjson</artifactId>
  127. <version>1.2.75</version>
  128. </dependency>
  129. <!-- hutool -->
  130. <dependency>
  131. <groupId>cn.hutool</groupId>
  132. <artifactId>hutool-core</artifactId>
  133. <version>5.7.16</version>
  134. </dependency>
  135. </dependencies>
  136. <build>
  137. <resources>
  138. <resource>
  139. <directory>src/main/java</directory>
  140. <includes>
  141. <include>**/*.xml</include>
  142. <include>**/*.*</include>
  143. </includes>
  144. <!-- 是否替换资源中的属性 -->
  145. <filtering>false</filtering>
  146. </resource>
  147. <resource>
  148. <directory>src/main/resources</directory>
  149. <includes>
  150. <include>**/*.*</include>
  151. </includes>
  152. <!-- 是否替换资源中的属性 -->
  153. <filtering>false</filtering>
  154. </resource>
  155. </resources>
  156. <plugins>
  157. <plugin>
  158. <groupId>org.springframework.boot</groupId>
  159. <artifactId>spring-boot-maven-plugin</artifactId>
  160. <configuration>
  161. <layout>ZIP</layout>
  162. </configuration>
  163. </plugin>
  164. </plugins>
  165. </build>
  166. <repositories>
  167. <!--<repository>-->
  168. <!--<id>nexus</id>-->
  169. <!--<url>http://www.redouble.store:1888/repository/maven-public/</url>-->
  170. <!--<releases>-->
  171. <!--<enabled>true</enabled>-->
  172. <!--</releases>-->
  173. <!--<snapshots>-->
  174. <!--<enabled>false</enabled>-->
  175. <!--</snapshots>-->
  176. <!--</repository>-->
  177. <!-- 个推 -->
  178. <repository>
  179. <id>getui-nexus</id>
  180. <url>http://mvn.gt.igexin.com/nexus/content/repositories/releases/</url>
  181. </repository>
  182. <repository>
  183. <id>nexus</id>
  184. <url>http://120.25.151.99:1888/repository/crbank-host/</url>
  185. <releases>
  186. <enabled>true</enabled>
  187. </releases>
  188. <snapshots>
  189. <enabled>false</enabled>
  190. </snapshots>
  191. </repository>
  192. </repositories>
  193. </project>