pom.xml 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.3.3.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.gree.manager</groupId>
  12. <artifactId>supply_job</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>supply_job</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <!--<dependency>-->
  21. <!--<groupId>org.springframework.boot</groupId>-->
  22. <!--<artifactId>spring-boot-starter-security</artifactId>-->
  23. <!--</dependency>-->
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. <exclusions>
  28. <exclusion>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-tomcat</artifactId>
  31. </exclusion>
  32. </exclusions>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-data-redis</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.integration</groupId>
  40. <artifactId>spring-integration-redis</artifactId>
  41. <!-- <version>RELEASE</version>-->
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-devtools</artifactId>
  46. <scope>runtime</scope>
  47. <optional>true</optional>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-test</artifactId>
  52. <scope>test</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.mybatis.spring.boot</groupId>
  56. <artifactId>mybatis-spring-boot-starter</artifactId>
  57. <version>2.1.0</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.baomidou</groupId>
  61. <artifactId>mybatis-plus-boot-starter</artifactId>
  62. <version>3.1.2</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.baomidou</groupId>
  66. <artifactId>mybatis-plus-generator</artifactId>
  67. <version>3.1.2</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.projectlombok</groupId>
  71. <artifactId>lombok</artifactId>
  72. <version>1.18.8</version>
  73. <scope>provided</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.mybatis.spring.boot</groupId>
  77. <artifactId>mybatis-spring-boot-autoconfigure</artifactId>
  78. <version>2.1.0</version>
  79. </dependency>
  80. <!--mysql驱动-->
  81. <dependency>
  82. <groupId>mysql</groupId>
  83. <artifactId>mysql-connector-java</artifactId>
  84. <version>8.0.17</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.alibaba</groupId>
  88. <artifactId>druid-spring-boot-starter</artifactId>
  89. <version>1.1.21</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.apache.commons</groupId>
  93. <artifactId>commons-pool2</artifactId>
  94. <version>2.8.0</version>
  95. </dependency>
  96. <!--okhttp3-->
  97. <dependency>
  98. <groupId>com.squareup.okhttp3</groupId>
  99. <artifactId>okhttp</artifactId>
  100. <version>4.0.1</version>
  101. </dependency>
  102. <!--fastjson-->
  103. <dependency>
  104. <groupId>com.alibaba</groupId>
  105. <artifactId>fastjson</artifactId>
  106. <version>1.2.59</version>
  107. </dependency>
  108. <!--swagger接口文档框架-->
  109. <dependency>
  110. <groupId>io.springfox</groupId>
  111. <artifactId>springfox-swagger2</artifactId>
  112. <version>2.9.2</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>io.springfox</groupId>
  116. <artifactId>springfox-swagger-ui</artifactId>
  117. <version>2.9.2</version>
  118. </dependency>
  119. <!-- 支持 @ConfigurationProperties 注解 -->
  120. <dependency>
  121. <groupId>org.springframework.boot</groupId>
  122. <artifactId>spring-boot-configuration-processor</artifactId>
  123. <optional>true</optional>
  124. </dependency>
  125. <!--更换undertow容器-->
  126. <dependency>
  127. <groupId>org.springframework.boot</groupId>
  128. <artifactId>spring-boot-starter-undertow</artifactId>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.bouncycastle</groupId>
  132. <artifactId>bcprov-jdk15on</artifactId>
  133. <version>1.60</version>
  134. <scope>compile</scope>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.springframework</groupId>
  138. <artifactId>spring-mock</artifactId>
  139. <version>2.0.8</version>
  140. </dependency>
  141. <!--模板组件-->
  142. <dependency>
  143. <groupId>org.springframework.boot</groupId>
  144. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  145. <version>2.2.6.RELEASE</version>
  146. </dependency>
  147. <!--模板组件END-->
  148. <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
  149. <dependency>
  150. <groupId>commons-codec</groupId>
  151. <artifactId>commons-codec</artifactId>
  152. <version>1.9</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>com.alibaba.cloud</groupId>
  156. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  157. <version>2.1.0.RELEASE</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>com.alibaba.cloud</groupId>
  161. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  162. <version>2.1.0.RELEASE</version>
  163. </dependency>
  164. <!--<dependency>-->
  165. <!--<groupId>org.springframework.cloud</groupId>-->
  166. <!--<artifactId>spring-cloud-starter-openfeign</artifactId>-->
  167. <!--<version>2.1.3.RELEASE</version>-->
  168. <!--</dependency>-->
  169. <!-- hutool工具 -->
  170. <dependency>
  171. <groupId>cn.hutool</groupId>
  172. <artifactId>hutool-all</artifactId>
  173. <version>5.8.0.M4</version>
  174. </dependency>
  175. <!-- 校验工具 -->
  176. <dependency>
  177. <groupId>org.hibernate</groupId>
  178. <artifactId>hibernate-validator</artifactId>
  179. <version>6.1.6.Final</version>
  180. </dependency>
  181. </dependencies>
  182. <profiles>
  183. <profile>
  184. <!-- 本地开发环境 -->
  185. <id>dev</id>
  186. <properties>
  187. <profiles.active>dev</profiles.active>
  188. </properties>
  189. <activation>
  190. <!-- 设置默认激活这个配置 -->
  191. <activeByDefault>true</activeByDefault>
  192. </activation>
  193. </profile>
  194. <profile>
  195. <!-- 测试环境 -->
  196. <id>test</id>
  197. <properties>
  198. <profiles.active>test</profiles.active>
  199. </properties>
  200. </profile>
  201. <profile>
  202. <!-- 正式环境 -->
  203. <id>prd</id>
  204. <properties>
  205. <profiles.active>prd</profiles.active>
  206. </properties>
  207. </profile>
  208. </profiles>
  209. <build>
  210. <plugins>
  211. <plugin>
  212. <groupId>org.springframework.boot</groupId>
  213. <artifactId>spring-boot-maven-plugin</artifactId>
  214. <version>2.3.10.RELEASE</version>
  215. </plugin>
  216. <plugin>
  217. <groupId>com.plus.plugin</groupId>
  218. <artifactId>plus-maven-plugin</artifactId>
  219. <version>5.0.0-SNAPSHOT</version>
  220. <configuration>
  221. <configPath>src/main/resources/generator-${profiles.active}.properties</configPath>
  222. </configuration>
  223. </plugin>
  224. </plugins>
  225. </build>
  226. <repositories>
  227. <repository>
  228. <id>nexus</id>
  229. <name>Releases</name>
  230. <url>http://121.43.111.127:8081/repository/maven-public</url>
  231. <releases>
  232. <enabled>true</enabled>
  233. </releases>
  234. <!--snapshots默认是关闭的,需要开启 -->
  235. <snapshots>
  236. <enabled>true</enabled>
  237. </snapshots>
  238. </repository>
  239. </repositories>
  240. <pluginRepositories>
  241. <pluginRepository>
  242. <id>nexus</id>
  243. <name>Releases</name>
  244. <url>http://121.43.111.127:8081/repository/maven-public</url>
  245. </pluginRepository>
  246. </pluginRepositories>
  247. </project>