pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  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.unis.crk</groupId>
  6. <artifactId>crk</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>crk</name>
  10. <description>Demo project for Spring Boot</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>2.1.5.RELEASE</version>
  15. <relativePath/> <!-- lookup parent from repository -->
  16. </parent>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. <druid.version>1.1.1</druid.version>
  22. <commons.version>1.10</commons.version>
  23. <swagger.version>2.9.2</swagger.version>
  24. <mybatis-plus.version>3.1.1</mybatis-plus.version>
  25. <velocity.version>2.1</velocity.version>
  26. <commons-lang.version>2.6</commons-lang.version>
  27. <commons-jexl.version>2.1.1</commons-jexl.version>
  28. <lombok.version>1.16.18</lombok.version>
  29. <spring-cloud.version>Greenwich.SR5</spring-cloud.version>
  30. <skipTests>true</skipTests>
  31. </properties>
  32. <dependencies>
  33. <!-- MQ -->
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-amqp</artifactId>
  37. </dependency>
  38. <!--使用外部tomcat-->
  39. <!--<dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-tomcat</artifactId>
  42. <scope>provided</scope>
  43. </dependency>-->
  44. <dependency>
  45. <groupId>org.springframework.cloud</groupId>
  46. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  47. </dependency>
  48. <!-- 引入hutool -->
  49. <dependency>
  50. <groupId>cn.hutool</groupId>
  51. <artifactId>hutool-all</artifactId>
  52. <version>5.7.15</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-security</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-aop</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-web</artifactId>
  65. </dependency>
  66. <!--mysql数据库-->
  67. <dependency>
  68. <groupId>mysql</groupId>
  69. <artifactId>mysql-connector-java</artifactId>
  70. </dependency>
  71. <!-- 达梦数据库 -->
  72. <dependency>
  73. <groupId>com.dameng</groupId>
  74. <artifactId>Dm8JdbcDriver18</artifactId>
  75. <version>8.1.1.49</version>
  76. </dependency>
  77. <!-- https://mvnrepository.com/artifact/org.jdom/jdom -->
  78. <dependency>
  79. <groupId>org.jdom</groupId>
  80. <artifactId>jdom</artifactId>
  81. <version>1.1.3</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.alibaba</groupId>
  85. <artifactId>druid-spring-boot-starter</artifactId>
  86. <version>${druid.version}</version>
  87. </dependency>
  88. <!--swagger2-->
  89. <dependency>
  90. <groupId>io.springfox</groupId>
  91. <artifactId>springfox-swagger2</artifactId>
  92. <version>${swagger.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>io.springfox</groupId>
  96. <artifactId>springfox-swagger-ui</artifactId>
  97. <version>${swagger.version}</version>
  98. </dependency>
  99. <!-- mybatis-plus -->
  100. <dependency>
  101. <groupId>com.baomidou</groupId>
  102. <artifactId>mybatis-plus-boot-starter</artifactId>
  103. <version>${mybatis-plus.version}</version>
  104. </dependency>
  105. <!-- 代码生成器 -->
  106. <dependency>
  107. <groupId>com.baomidou</groupId>
  108. <artifactId>mybatis-plus-generator</artifactId>
  109. <version>${mybatis-plus.version}</version>
  110. </dependency>
  111. <!-- 模板引擎 -->
  112. <dependency>
  113. <groupId>org.apache.velocity</groupId>
  114. <artifactId>velocity-engine-core</artifactId>
  115. <version>${velocity.version}</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>commons-lang</groupId>
  119. <artifactId>commons-lang</artifactId>
  120. <version>${commons-lang.version}</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.apache.commons</groupId>
  124. <artifactId>commons-jexl</artifactId>
  125. <version>${commons-jexl.version}</version>
  126. </dependency>
  127. <!--<dependency>-->
  128. <!--<groupId>142205230234 91632300710520043U001000100102 2 2022-05-23 NULL D306322051200001 马国源 18309738325 632321197202150035 青海省黄南藏族自治州同仁市幸福小区6号 1 青A67867 NULL 民和华瑞粮油储备有限公司 2022-05-23 00:12:12 NULL 1111001 122 2021 371700 0 51720.000 张林生 2022-05-23 00:12:12 刘生平 NULL 16630.000 张林生 2022-05-23 00:12:12 刘生平 3 0.0 0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 NULL 0.0 0.0 NULL 35090.000 吴海录 2022-05-23 00:00:00 赵文 NULL NULL u 2022-09-16 16:32:00 01 NULL
  129. org.springframework.boot</groupId>-->
  130. <!--<artifactId>spring-boot-devtools</artifactId>-->
  131. <!--<optional>true</optional>-->
  132. <!--</dependency>-->
  133. <dependency>
  134. <groupId>org.apache.poi</groupId>
  135. <artifactId>poi</artifactId>
  136. <version>3.13</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.apache.poi</groupId>
  140. <artifactId>poi-ooxml</artifactId>
  141. <version>3.13</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>commons-collections</groupId>
  145. <artifactId>commons-collections</artifactId>
  146. <version>3.2.1</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.projectlombok</groupId>
  150. <artifactId>lombok</artifactId>
  151. <version>${lombok.version}</version>
  152. <optional>true</optional>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.springframework.boot</groupId>
  156. <artifactId>spring-boot-starter-test</artifactId>
  157. <scope>test</scope>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.springframework.security</groupId>
  161. <artifactId>spring-security-test</artifactId>
  162. <scope>test</scope>
  163. </dependency>
  164. <!--添加webservice-->
  165. <dependency>
  166. <groupId>com.alibaba</groupId>
  167. <artifactId>fastjson</artifactId>
  168. <version>1.2.41</version>
  169. </dependency>
  170. <!-- redis-->
  171. <dependency>
  172. <groupId>org.springframework.boot</groupId>
  173. <artifactId>spring-boot-starter-data-redis</artifactId>
  174. <version>2.0.4.RELEASE</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.springframework.session</groupId>
  178. <artifactId>spring-session-data-redis</artifactId>
  179. <version>2.0.5.RELEASE</version>
  180. </dependency>
  181. <!-- <dependency>
  182. <groupId>org.springframework.security</groupId>
  183. <artifactId>spring-security-jwt</artifactId>
  184. </dependency>
  185. jwt解析相关
  186. <dependency>
  187. <groupId>io.jsonwebtoken</groupId>
  188. <artifactId>jjwt</artifactId>
  189. <version>0.9.1</version>
  190. </dependency>-->
  191. <!--添加webservice end-->
  192. <!-- 存放在本地的jar -->
  193. <dependency>
  194. <groupId>unis</groupId>
  195. <artifactId>unis</artifactId>
  196. <version>1.0.0</version>
  197. <scope>system</scope>
  198. <systemPath>
  199. ${project.basedir}/src/main/resources/lib/unis.jar
  200. </systemPath>
  201. </dependency>
  202. <!--<dependency>-->
  203. <!--<groupId>com.googlecode.aviator</groupId>-->
  204. <!--<artifactId>aviator</artifactId>-->
  205. <!--<version>1.0.0</version>-->
  206. <!--<scope>system</scope>-->
  207. <!--<systemPath>-->
  208. <!--${project.basedir}/src/main/resources/lib/aviator.jar-->
  209. <!--</systemPath>-->
  210. <!--</dependency>-->
  211. <!--<dependency>-->
  212. <!--<groupId>cngrainHandler</groupId>-->
  213. <!--<artifactId>cngrainHandler</artifactId>-->
  214. <!--<version>1.0.0</version>-->
  215. <!--<scope>system</scope>-->
  216. <!--<systemPath>-->
  217. <!--${project.basedir}/src/main/resources/lib/cngrainHandler.jar-->
  218. <!--</systemPath>-->
  219. <!--</dependency>-->
  220. <dependency>
  221. <groupId>unis</groupId>
  222. <artifactId>unis</artifactId>
  223. <version>1.0.0</version>
  224. <scope>system</scope>
  225. <systemPath>
  226. ${project.basedir}/src/main/resources/lib/unis.jar
  227. </systemPath>
  228. </dependency>
  229. <dependency>
  230. <groupId>CReader</groupId>
  231. <artifactId>CReader</artifactId>
  232. <version>20220630</version>
  233. <scope>system</scope>
  234. <systemPath>
  235. ${project.basedir}/src/main/resources/lib/CReader20220630.jar
  236. </systemPath>
  237. </dependency>
  238. <dependency>
  239. <groupId>commons-io</groupId>
  240. <artifactId>commons-io</artifactId>
  241. <version>2.3</version>
  242. </dependency>
  243. <dependency>
  244. <groupId>minio</groupId>
  245. <artifactId>minio</artifactId>
  246. <version>0.6.0.11</version>
  247. <scope>system</scope>
  248. <systemPath>
  249. ${project.basedir}/src/main/resources/lib/minio-6.0.11.jar
  250. </systemPath>
  251. </dependency>
  252. <dependency>
  253. <groupId>autoconfigure</groupId>
  254. <artifactId>autoconfigure</artifactId>
  255. <version>2.3.5.RELEASE</version>
  256. <scope>system</scope>
  257. <systemPath>
  258. ${project.basedir}/src/main/resources/lib/spring-security-oauth2-2.3.5.RELEASE.jar
  259. </systemPath>
  260. </dependency>
  261. <!--<dependency>
  262. <groupId>xmlpull</groupId>
  263. <artifactId>xmlpull</artifactId>
  264. <version>1.1.3.1</version>
  265. <scope>system</scope>
  266. <systemPath>
  267. ${project.basedir}/src/main/resources/lib/xmlpull-1.1.3.1.jar
  268. </systemPath>
  269. </dependency>-->
  270. <dependency>
  271. <groupId>client</groupId>
  272. <artifactId>client</artifactId>
  273. <version>1.24.1</version>
  274. <scope>system</scope>
  275. <systemPath>
  276. ${project.basedir}/src/main/resources/lib/google-http-client-1.24.1.jar
  277. </systemPath>
  278. </dependency>
  279. <dependency>
  280. <groupId>clientmxl</groupId>
  281. <artifactId>clientmxl</artifactId>
  282. <version>1.24.1</version>
  283. <scope>system</scope>
  284. <systemPath>
  285. ${project.basedir}/src/main/resources/lib/google-http-client-xml-1.24.1.jar
  286. </systemPath>
  287. </dependency>
  288. <!--<dependency>
  289. <groupId>hutool</groupId>
  290. <artifactId>hutool</artifactId>
  291. <version>5.7.15</version>
  292. <scope>system</scope>
  293. <systemPath>
  294. ${project.basedir}/src/main/resources/lib/hutool-all-5.7.15.jar
  295. </systemPath>
  296. </dependency>-->
  297. <dependency>
  298. <groupId>jjwt</groupId>
  299. <artifactId>jjwt</artifactId>
  300. <version>0.9.1</version>
  301. <scope>system</scope>
  302. <systemPath>
  303. ${project.basedir}/src/main/resources/lib/jjwt-0.9.1.jar
  304. </systemPath>
  305. </dependency>
  306. <dependency>
  307. <groupId>com.auth0</groupId>
  308. <artifactId>java-jwt</artifactId>
  309. <version>3.9.0</version>
  310. </dependency>
  311. <dependency>
  312. <groupId>jwt</groupId>
  313. <artifactId>jwt</artifactId>
  314. <version>1.0.9.RELEASE</version>
  315. <scope>system</scope>
  316. <systemPath>
  317. ${project.basedir}/src/main/resources/lib/spring-security-jwt-1.0.9.RELEASE.jar
  318. </systemPath>
  319. </dependency>
  320. </dependencies>
  321. <dependencyManagement>
  322. <dependencies>
  323. <dependency>
  324. <groupId>org.springframework.cloud</groupId>
  325. <artifactId>spring-cloud-dependencies</artifactId>
  326. <version>${spring-cloud.version}</version>
  327. <type>pom</type>
  328. <scope>import</scope>
  329. </dependency>
  330. </dependencies>
  331. </dependencyManagement>
  332. <build>
  333. <plugins>
  334. <plugin>
  335. <groupId>org.springframework.boot</groupId>
  336. <artifactId>spring-boot-maven-plugin</artifactId>
  337. </plugin>
  338. <!--<plugin>
  339. <groupId>org.apache.maven.plugins</groupId>
  340. <artifactId>maven-compiler-plugin</artifactId>
  341. <configuration>
  342. <source>${java.version}</source>
  343. <target>${java.version}</target>
  344. <encoding>utf-8</encoding>
  345. </configuration>
  346. </plugin>-->
  347. </plugins>
  348. </build>
  349. </project>