pom.xml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381
  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>3.1.3</version>
  9. </parent>
  10. <groupId>cn.cslg</groupId>
  11. <artifactId>ecs</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <packaging>jar</packaging>
  14. <name>pas</name>
  15. <description>常熟理工学院 专利分析系统</description>
  16. <properties>
  17. <java.version>8</java.version>
  18. <jwt.version>0.9.0</jwt.version>
  19. <commons.io.version>2.5</commons.io.version>
  20. <mybatisplus.version>3.5.3.1</mybatisplus.version>
  21. <google.code.gson.version>2.7</google.code.gson.version>
  22. <hutool.version>5.6.5</hutool.version>
  23. <okhttps.version>4.10.0</okhttps.version>
  24. <poi.version>4.1.2</poi.version>
  25. <poi-tl.version>1.10.3</poi-tl.version>
  26. <druid.version>1.1.20</druid.version>
  27. <fastjson.version>2.0.12</fastjson.version>
  28. <sa-token.version>1.29.0</sa-token.version>
  29. <springdoc.version>1.6.6</springdoc.version>
  30. <elasticsearch.version>8.6.1</elasticsearch.version>
  31. </properties>
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.springdoc</groupId>
  35. <artifactId>springdoc-openapi-ui</artifactId>
  36. <version>${springdoc.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-aop</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.deepoove</groupId>
  44. <artifactId>poi-tl</artifactId>
  45. <version>${poi-tl.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>cn.dev33</groupId>
  49. <artifactId>sa-token-spring-boot-starter</artifactId>
  50. <version>${sa-token.version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>cn.dev33</groupId>
  54. <artifactId>sa-token-dao-redis-jackson</artifactId>
  55. <version>${sa-token.version}</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.alibaba</groupId>
  59. <artifactId>druid-spring-boot-starter</artifactId>
  60. <version>${druid.version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.alibaba</groupId>
  64. <artifactId>fastjson</artifactId>
  65. <version>${fastjson.version}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>commons-codec</groupId>
  69. <artifactId>commons-codec</artifactId>
  70. <version>1.15</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.apache.commons</groupId>
  74. <artifactId>commons-compress</artifactId>
  75. <version>1.21</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>commons-io</groupId>
  79. <artifactId>commons-io</artifactId>
  80. <version>2.6</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>io.jsonwebtoken</groupId>
  84. <artifactId>jjwt</artifactId>
  85. <version>${jwt.version}</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.auth0</groupId>
  89. <artifactId>java-jwt</artifactId>
  90. <version>3.1.0</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.ejlchina</groupId>
  94. <artifactId>okhttps</artifactId>
  95. <version>3.1.1</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.squareup.okhttp3</groupId>
  99. <artifactId>okhttp</artifactId>
  100. <version>3.14.9</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.springframework.boot</groupId>
  104. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>cn.hutool</groupId>
  108. <artifactId>hutool-all</artifactId>
  109. <version>${hutool.version}</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.google.code.gson</groupId>
  113. <artifactId>gson</artifactId>
  114. <!-- <version>${google.code.gson.version}</version>-->
  115. </dependency>
  116. <dependency>
  117. <groupId>org.mybatis</groupId>
  118. <artifactId>mybatis-typehandlers-jsr310</artifactId>
  119. <version>1.0.2</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>com.baomidou</groupId>
  123. <artifactId>mybatis-plus-boot-starter</artifactId>
  124. <version>${mybatisplus.version}</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.springframework.boot</groupId>
  128. <artifactId>spring-boot-starter-data-redis</artifactId>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.springframework.boot</groupId>
  132. <artifactId>spring-boot-starter-web</artifactId>
  133. <version>3.1.3</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.springframework.boot</groupId>
  137. <artifactId>spring-boot-starter-websocket</artifactId>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.apache.commons</groupId>
  141. <artifactId>commons-pool2</artifactId>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.apache.commons</groupId>
  145. <artifactId>commons-lang3</artifactId>
  146. <version>3.6</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>com.mysql</groupId>
  150. <artifactId>mysql-connector-j</artifactId>
  151. <scope>runtime</scope>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.projectlombok</groupId>
  155. <artifactId>lombok</artifactId>
  156. <optional>true</optional>
  157. </dependency>
  158. <dependency>
  159. <groupId>junit</groupId>
  160. <artifactId>junit</artifactId>
  161. </dependency>
  162. <!-- <dependency>-->
  163. <!-- <groupId>org.openjdk.nashorn</groupId>-->
  164. <!-- <artifactId>nashorn-core</artifactId>-->
  165. <!-- <version>15.3</version>-->
  166. <!-- </dependency>-->
  167. <!-- jdk17后需要此依赖-->
  168. <dependency>
  169. <groupId>org.apache.poi</groupId>
  170. <artifactId>poi</artifactId>
  171. <version>${poi.version}</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>org.apache.poi</groupId>
  175. <artifactId>poi-ooxml</artifactId>
  176. <version>${poi.version}</version>
  177. </dependency>
  178. <dependency>
  179. <groupId>org.apache.poi</groupId>
  180. <artifactId>poi-scratchpad</artifactId>
  181. <version>${poi.version}</version>
  182. </dependency>
  183. <dependency>
  184. <groupId>commons-fileupload</groupId>
  185. <artifactId>commons-fileupload</artifactId>
  186. <version>1.3.3</version>
  187. </dependency>
  188. <dependency>
  189. <groupId>com.github.pagehelper</groupId>
  190. <artifactId>pagehelper-spring-boot-starter</artifactId>
  191. <version>1.4.0</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>org.springframework.boot</groupId>
  195. <artifactId>spring-boot-starter-test</artifactId>
  196. <scope>test</scope>
  197. </dependency>
  198. <dependency>
  199. <groupId>org.springframework.boot</groupId>
  200. <artifactId>spring-boot-starter-quartz</artifactId>
  201. </dependency>
  202. <dependency>
  203. <groupId>com.mchange</groupId>
  204. <artifactId>c3p0</artifactId>
  205. <version>0.9.5.2</version>
  206. </dependency>
  207. <dependency>
  208. <groupId>joda-time</groupId>
  209. <artifactId>joda-time</artifactId>
  210. <version>2.9.9</version>
  211. </dependency>
  212. <dependency>
  213. <groupId>org.antlr</groupId>
  214. <artifactId>antlr4-runtime</artifactId>
  215. <version>4.12.0</version>
  216. </dependency>
  217. <dependency>
  218. <groupId>org.apache.pdfbox</groupId>
  219. <artifactId>pdfbox</artifactId>
  220. <version>2.0.16</version>
  221. </dependency>
  222. <dependency>
  223. <groupId>org.springframework.boot</groupId>
  224. <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
  225. </dependency>
  226. <dependency>
  227. <groupId>dom4j</groupId>
  228. <artifactId>dom4j</artifactId>
  229. <version>1.6.1</version>
  230. </dependency>
  231. <dependency>
  232. <groupId>jaxen</groupId>
  233. <artifactId>jaxen</artifactId>
  234. <version>1.2.0</version> <!-- 使用你需要的版本 -->
  235. </dependency>
  236. <dependency>
  237. <groupId>org.springframework</groupId>
  238. <artifactId>spring-test</artifactId>
  239. </dependency>
  240. <dependency>
  241. <groupId>org.springframework.boot</groupId>
  242. <artifactId>spring-boot-starter-amqp</artifactId>
  243. </dependency>
  244. <!-- poi-->
  245. <dependency>
  246. <groupId>io.github.draco1023</groupId>
  247. <artifactId>poi-tl-ext</artifactId>
  248. <version>0.4.2</version>
  249. </dependency>
  250. <dependency>
  251. <groupId>commons-beanutils</groupId>
  252. <artifactId>commons-beanutils</artifactId>
  253. <version>1.9.3</version>
  254. </dependency>
  255. <dependency>
  256. <groupId>com.baomidou</groupId>
  257. <artifactId>mybatis-plus-generator</artifactId>
  258. <version>3.5.3.1</version>
  259. </dependency>
  260. <!-- velocity -->
  261. <dependency>
  262. <groupId>org.apache.velocity</groupId>
  263. <artifactId>velocity-engine-core</artifactId>
  264. <version>2.0</version>
  265. </dependency>
  266. <!-- 短信接口 -->
  267. <dependency>
  268. <groupId>com.aliyun</groupId>
  269. <artifactId>aliyun-java-sdk-core</artifactId>
  270. <version>4.5.16</version>
  271. </dependency>
  272. <dependency>
  273. <groupId>com.aliyun</groupId>
  274. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  275. <version>1.1.0</version>
  276. </dependency>
  277. <dependency>
  278. <groupId>com.github.wechatpay-apiv3</groupId>
  279. <artifactId>wechatpay-java</artifactId>
  280. <version>0.2.6</version>
  281. </dependency>
  282. <dependency>
  283. <groupId>org.bouncycastle</groupId>
  284. <artifactId>bcprov-jdk15on</artifactId>
  285. <version>1.65</version>
  286. </dependency>
  287. <!-- Feb, 2011 -->
  288. <dependency>
  289. <groupId>org.bouncycastle</groupId>
  290. <artifactId>bcpg-jdk16</artifactId>
  291. <version>1.46</version>
  292. </dependency>
  293. <!-- Oct, 2019 -->
  294. <dependency>
  295. <groupId>org.bouncycastle</groupId>
  296. <artifactId>bcpkix-jdk15on</artifactId>
  297. <version>1.65</version>
  298. </dependency>
  299. </dependencies>
  300. <build>
  301. <finalName>ECS_IMPORT</finalName>
  302. <plugins>
  303. <plugin>
  304. <groupId>org.springframework.boot</groupId>
  305. <artifactId>spring-boot-maven-plugin</artifactId>
  306. <configuration>
  307. <includeSystemScope>true</includeSystemScope>
  308. <!-- 指定该Main Class为全局的唯一入口 -->
  309. <mainClass>com.example.xiaoshiweixinback.XiaoshiWeixinbackApplication</mainClass>
  310. <layout>ZIP</layout>
  311. <excludes>
  312. <exclude>
  313. <groupId>org.projectlombok</groupId>
  314. <artifactId>lombok</artifactId>
  315. </exclude>
  316. </excludes>
  317. </configuration>
  318. <executions>
  319. <execution>
  320. <goals>
  321. <goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中-->
  322. </goals>
  323. </execution>
  324. </executions>
  325. </plugin>
  326. <plugin>
  327. <groupId>org.apache.maven.plugins</groupId>
  328. <artifactId>maven-compiler-plugin</artifactId>
  329. <configuration>
  330. <source>8</source>
  331. <target>8</target>
  332. </configuration>
  333. </plugin>
  334. <plugin>
  335. <groupId>org.apache.maven.plugins</groupId>
  336. <artifactId>maven-compiler-plugin</artifactId>
  337. <configuration>
  338. <source>17</source>
  339. <target>17</target>
  340. </configuration>
  341. </plugin>
  342. </plugins>
  343. </build>
  344. <!--阿里云镜像源(因需要提交到GithubActions,会引起依赖下载过慢的问题)-->
  345. <repositories>
  346. <repository>
  347. <id>nexus-aliyun</id>
  348. <name>nexus-aliyun</name>
  349. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  350. <releases>
  351. <enabled>true</enabled>
  352. </releases>
  353. <snapshots>
  354. <enabled>false</enabled>
  355. </snapshots>
  356. </repository>
  357. <repository>
  358. <id>com.e-iceblue</id>
  359. <name>e-iceblue</name>
  360. <url>http://repo.e-iceblue.com/nexus/content/groups/public/</url>
  361. </repository>
  362. </repositories>
  363. </project>