pom.xml 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  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. </dependency>
  28. <dependency>
  29. <groupId>org.slf4j</groupId>
  30. <artifactId>jcl-over-slf4j</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-aop</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>commons-io</groupId>
  38. <artifactId>commons-io</artifactId>
  39. <version>${commons.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>commons-lang</groupId>
  43. <artifactId>commons-lang</artifactId>
  44. <version>${commons.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.projectlombok</groupId>
  48. <artifactId>lombok</artifactId>
  49. </dependency>
  50. <!-- mybatis-plus -->
  51. <dependency>
  52. <groupId>com.baomidou</groupId>
  53. <artifactId>mybatis-plus-boot-starter</artifactId>
  54. <version>${mybatis-plus.version}</version>
  55. </dependency>
  56. <!-- druid -->
  57. <dependency>
  58. <groupId>com.alibaba</groupId>
  59. <artifactId>druid-spring-boot-starter</artifactId>
  60. <version>${druid.version}</version>
  61. </dependency>
  62. <!-- 动态数据源 -->
  63. <dependency>
  64. <groupId>com.baomidou</groupId>
  65. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  66. <version>2.5.4</version>
  67. </dependency>
  68. <!-- json -->
  69. <dependency>
  70. <groupId>com.alibaba</groupId>
  71. <artifactId>fastjson</artifactId>
  72. <version>1.2.56</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.baomidou</groupId>
  76. <artifactId>mybatis-plus</artifactId>
  77. <version>3.3.1.tmp</version>
  78. </dependency>
  79. <!--mysql-->
  80. <dependency>
  81. <groupId>mysql</groupId>
  82. <artifactId>mysql-connector-java</artifactId>
  83. <version>5.1.47</version>
  84. <scope>runtime</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>net.sourceforge.jtds</groupId>
  88. <artifactId>jtds</artifactId>
  89. <version>1.3.1</version>
  90. <scope>runtime</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.apache.httpcomponents</groupId>
  94. <artifactId>httpclient</artifactId>
  95. <version>4.5.9</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.apache.httpcomponents</groupId>
  99. <artifactId>httpcore</artifactId>
  100. <version>4.4</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.squareup.retrofit2</groupId>
  104. <artifactId>retrofit</artifactId>
  105. <version>2.6.0</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>commons-codec</groupId>
  109. <artifactId>commons-codec</artifactId>
  110. <version>1.11</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.google.code.gson</groupId>
  114. <artifactId>gson</artifactId>
  115. </dependency>
  116. <dependency>
  117. <groupId>log4j</groupId>
  118. <artifactId>log4j</artifactId>
  119. <version>1.2.17</version>
  120. </dependency>
  121. <!--JWT-->
  122. <dependency>
  123. <groupId>com.auth0</groupId>
  124. <artifactId>java-jwt</artifactId>
  125. <version>3.7.0</version>
  126. </dependency>
  127. <!--shiro-->
  128. <dependency>
  129. <groupId>org.apache.shiro</groupId>
  130. <artifactId>shiro-spring-boot-starter</artifactId>
  131. <version>1.4.0</version>
  132. </dependency>
  133. <!-- HttpClient -->
  134. <dependency>
  135. <groupId>org.apache.httpcomponents</groupId>
  136. <artifactId>httpclient</artifactId>
  137. <version>4.5.9</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.apache.httpcomponents</groupId>
  141. <artifactId>httpcore</artifactId>
  142. <version>4.4</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.apache.httpcomponents</groupId>
  146. <artifactId>httpmime</artifactId>
  147. <version>4.5</version>
  148. </dependency>
  149. <!-- Redis -->
  150. <dependency>
  151. <groupId>org.springframework.boot</groupId>
  152. <artifactId>spring-boot-starter-data-redis</artifactId>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.apache.commons</groupId>
  156. <artifactId>commons-pool2</artifactId>
  157. </dependency>
  158. <dependency>
  159. <groupId>commons-lang</groupId>
  160. <artifactId>commons-lang</artifactId>
  161. <version>2.6</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>com.github.binarywang</groupId>
  165. <artifactId>weixin-java-cp</artifactId>
  166. <version>3.6.0</version>
  167. </dependency>
  168. </dependencies>
  169. <build>
  170. <plugins>
  171. <plugin>
  172. <groupId>org.springframework.boot</groupId>
  173. <artifactId>spring-boot-maven-plugin</artifactId>
  174. </plugin>
  175. </plugins>
  176. <resources>
  177. <resource>
  178. <directory>src/main/java</directory>
  179. <includes>
  180. <include>**/*.yml</include>
  181. <include>**/*.properties</include>
  182. <include>**/*.xml</include>
  183. </includes>
  184. <filtering>false</filtering>
  185. </resource>
  186. <resource>
  187. <directory>src/main/resources</directory>
  188. <includes>
  189. <include>**/*.yml</include>
  190. <include>**/*.properties</include>
  191. <include>**/*.xml</include>
  192. </includes>
  193. <filtering>false</filtering>
  194. </resource>
  195. </resources>
  196. </build>
  197. <repositories>
  198. <repository>
  199. <id>bintray-americanexpress-maven</id>
  200. <url>https://dl.bintray.com/americanexpress/maven</url>
  201. </repository>
  202. <repository>
  203. <id>aliyun</id>
  204. <name>aliyun Repository</name>
  205. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  206. <snapshots>
  207. <enabled>false</enabled>
  208. </snapshots>
  209. </repository>
  210. <repository>
  211. <id>jeecg</id>
  212. <name>jeecg Repository</name>
  213. <url>http://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  214. <snapshots>
  215. <enabled>false</enabled>
  216. </snapshots>
  217. </repository>
  218. <repository>
  219. <id>maven-3rdparty</id>
  220. <url>https://packages.atlassian.com/maven-3rdparty/</url>
  221. </repository>
  222. <repository>
  223. <id>ctop</id>
  224. <url>http://118.24.244.213:8081/repository/3rd_part</url>
  225. </repository>
  226. </repositories>
  227. </project>