pom.xml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  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>cn.com.ctop</groupId>
  7. <artifactId>okr</artifactId>
  8. <version>1.0</version>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>2.1.3.RELEASE</version>
  13. <relativePath/>
  14. </parent>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <mybatis-plus.version>3.0.6</mybatis-plus.version>
  20. <druid.version>1.1.10</druid.version>
  21. <commons.version>2.6</commons.version>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. <!-- <exclusions>-->
  28. <!-- <exclusion>-->
  29. <!-- <groupId>ch.qos.logback</groupId>-->
  30. <!-- <artifactId>logback-classic</artifactId>-->
  31. <!-- </exclusion>-->
  32. <!-- </exclusions>-->
  33. </dependency>
  34. <dependency>
  35. <groupId>org.slf4j</groupId>
  36. <artifactId>jcl-over-slf4j</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-aop</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-actuator</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>commons-io</groupId>
  48. <artifactId>commons-io</artifactId>
  49. <version>${commons.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>commons-lang</groupId>
  53. <artifactId>commons-lang</artifactId>
  54. <version>${commons.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.projectlombok</groupId>
  58. <artifactId>lombok</artifactId>
  59. </dependency>
  60. <!-- mybatis-plus -->
  61. <dependency>
  62. <groupId>com.baomidou</groupId>
  63. <artifactId>mybatis-plus-boot-starter</artifactId>
  64. <version>${mybatis-plus.version}</version>
  65. </dependency>
  66. <!-- druid -->
  67. <dependency>
  68. <groupId>com.alibaba</groupId>
  69. <artifactId>druid-spring-boot-starter</artifactId>
  70. <version>${druid.version}</version>
  71. </dependency>
  72. <!-- 动态数据源 -->
  73. <dependency>
  74. <groupId>com.baomidou</groupId>
  75. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  76. <version>2.5.4</version>
  77. </dependency>
  78. <!-- json -->
  79. <dependency>
  80. <groupId>com.alibaba</groupId>
  81. <artifactId>fastjson</artifactId>
  82. <version>1.2.56</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.baomidou</groupId>
  86. <artifactId>mybatis-plus</artifactId>
  87. <version>3.3.1.tmp</version>
  88. </dependency>
  89. <!--mysql-->
  90. <dependency>
  91. <groupId>mysql</groupId>
  92. <artifactId>mysql-connector-java</artifactId>
  93. <version>5.1.47</version>
  94. <scope>runtime</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>net.sourceforge.jtds</groupId>
  98. <artifactId>jtds</artifactId>
  99. <version>1.3.1</version>
  100. <scope>runtime</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.httpcomponents</groupId>
  104. <artifactId>httpclient</artifactId>
  105. <version>4.5.9</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.apache.httpcomponents</groupId>
  109. <artifactId>httpcore</artifactId>
  110. <version>4.4</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.squareup.retrofit2</groupId>
  114. <artifactId>retrofit</artifactId>
  115. <version>2.6.0</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>commons-codec</groupId>
  119. <artifactId>commons-codec</artifactId>
  120. <version>1.11</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.google.code.gson</groupId>
  124. <artifactId>gson</artifactId>
  125. </dependency>
  126. <dependency>
  127. <groupId>cn.hutool</groupId>
  128. <artifactId>hutool-all</artifactId>
  129. <version>4.5.11</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>log4j</groupId>
  133. <artifactId>log4j</artifactId>
  134. <version>1.2.17</version>
  135. </dependency>
  136. <!--JWT-->
  137. <dependency>
  138. <groupId>com.auth0</groupId>
  139. <artifactId>java-jwt</artifactId>
  140. <version>3.7.0</version>
  141. </dependency>
  142. <!--shiro-->
  143. <dependency>
  144. <groupId>org.apache.shiro</groupId>
  145. <artifactId>shiro-spring-boot-starter</artifactId>
  146. <version>1.4.0</version>
  147. </dependency>
  148. <!-- HttpClient -->
  149. <dependency>
  150. <groupId>org.apache.httpcomponents</groupId>
  151. <artifactId>httpclient</artifactId>
  152. <version>4.5.9</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.apache.httpcomponents</groupId>
  156. <artifactId>httpcore</artifactId>
  157. <version>4.4</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.apache.httpcomponents</groupId>
  161. <artifactId>httpmime</artifactId>
  162. <version>4.5</version>
  163. </dependency>
  164. <!-- Swagger API文档 -->
  165. <dependency>
  166. <groupId>io.springfox</groupId>
  167. <artifactId>springfox-swagger2</artifactId>
  168. <version>2.9.2</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>io.springfox</groupId>
  172. <artifactId>springfox-swagger-ui</artifactId>
  173. <version>2.9.2</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>com.github.xiaoymin</groupId>
  177. <artifactId>swagger-bootstrap-ui</artifactId>
  178. <version>1.9.3</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>io.springfox</groupId>
  182. <artifactId>springfox-bean-validators</artifactId>
  183. <version>2.9.2</version>
  184. </dependency>
  185. <!-- -->
  186. <!-- Redis -->
  187. <dependency>
  188. <groupId>org.springframework.boot</groupId>
  189. <artifactId>spring-boot-starter-data-redis</artifactId>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.apache.commons</groupId>
  193. <artifactId>commons-pool2</artifactId>
  194. </dependency>
  195. <dependency>
  196. <groupId>commons-lang</groupId>
  197. <artifactId>commons-lang</artifactId>
  198. <version>2.6</version>
  199. </dependency>
  200. <dependency>
  201. <groupId>com.github.binarywang</groupId>
  202. <artifactId>weixin-java-cp</artifactId>
  203. <version>3.6.0</version>
  204. </dependency>
  205. <!-- xxl-rpc-core -->
  206. <dependency>
  207. <groupId>com.xuxueli</groupId>
  208. <artifactId>xxl-rpc-core</artifactId>
  209. <version>1.5.0</version>
  210. </dependency>
  211. <dependency>
  212. <groupId>cn.com.ctop</groupId>
  213. <artifactId>xxl-job-core</artifactId>
  214. <version>2.0.2</version>
  215. </dependency>
  216. <dependency>
  217. <groupId>com.xuxueli</groupId>
  218. <artifactId>xxl-mq-client</artifactId>
  219. <version>1.2.2</version>
  220. </dependency>
  221. <dependency>
  222. <groupId>org.codehaus.groovy</groupId>
  223. <artifactId>groovy</artifactId>
  224. <version>2.5.9</version>
  225. </dependency>
  226. </dependencies>
  227. <build>
  228. <plugins>
  229. <plugin>
  230. <groupId>org.springframework.boot</groupId>
  231. <artifactId>spring-boot-maven-plugin</artifactId>
  232. </plugin>
  233. </plugins>
  234. <resources>
  235. <resource>
  236. <directory>src/main/java</directory>
  237. <includes>
  238. <include>**/*.yml</include>
  239. <include>**/*.properties</include>
  240. <include>**/*.xml</include>
  241. </includes>
  242. <filtering>false</filtering>
  243. </resource>
  244. <resource>
  245. <directory>src/main/resources</directory>
  246. <includes>
  247. <include>**/*.yml</include>
  248. <include>**/*.properties</include>
  249. <include>**/*.xml</include>
  250. </includes>
  251. <filtering>false</filtering>
  252. </resource>
  253. </resources>
  254. </build>
  255. <repositories>
  256. <repository>
  257. <id>bintray-americanexpress-maven</id>
  258. <url>https://dl.bintray.com/americanexpress/maven</url>
  259. </repository>
  260. <repository>
  261. <id>aliyun</id>
  262. <name>aliyun Repository</name>
  263. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  264. <snapshots>
  265. <enabled>false</enabled>
  266. </snapshots>
  267. </repository>
  268. <repository>
  269. <id>jeecg</id>
  270. <name>jeecg Repository</name>
  271. <url>http://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  272. <snapshots>
  273. <enabled>false</enabled>
  274. </snapshots>
  275. </repository>
  276. <repository>
  277. <id>maven-3rdparty</id>
  278. <url>https://packages.atlassian.com/maven-3rdparty/</url>
  279. </repository>
  280. <repository>
  281. <id>ctop</id>
  282. <url>http://118.24.244.213:8081/repository/3rd_part</url>
  283. </repository>
  284. </repositories>
  285. </project>