pom.xml 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521
  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>cn.com.qmth.examcloud</groupId>
  6. <artifactId>examcloud-parent</artifactId>
  7. <version>${revision}</version>
  8. <packaging>pom</packaging>
  9. <properties>
  10. <!-- 云平台版本 -->
  11. <revision>v5.0.6</revision>
  12. <spring-boot.version>2.3.12.RELEASE</spring-boot.version>
  13. <spring-cloud.version>Hoxton.SR12</spring-cloud.version>
  14. <log4j2.version>2.17.2</log4j2.version>
  15. <maven-compiler-version>3.8.1</maven-compiler-version>
  16. <maven-surefire-version>2.22.2</maven-surefire-version>
  17. <maven-flatten-version>1.2.7</maven-flatten-version>
  18. <maven-deploy-version>2.8.2</maven-deploy-version>
  19. <maven-assembly-version>3.6.0</maven-assembly-version>
  20. <maven.compiler.source>1.8</maven.compiler.source>
  21. <maven.compiler.target>1.8</maven.compiler.target>
  22. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  23. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  24. <skipAssembly>false</skipAssembly>
  25. </properties>
  26. <dependencyManagement>
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.springframework.cloud</groupId>
  30. <artifactId>spring-cloud-dependencies</artifactId>
  31. <version>${spring-cloud.version}</version>
  32. <type>pom</type>
  33. <scope>import</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-dependencies</artifactId>
  38. <version>${spring-boot.version}</version>
  39. <type>pom</type>
  40. <scope>import</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>cn.com.qmth.framework</groupId>
  44. <artifactId>config-center-client</artifactId>
  45. <version>1.0.0</version>
  46. </dependency>
  47. <!-- 常用Jars start -->
  48. <dependency>
  49. <groupId>com.alibaba</groupId>
  50. <artifactId>druid</artifactId>
  51. <version>1.2.8</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.google.guava</groupId>
  55. <artifactId>guava</artifactId>
  56. <version>30.1.1-jre</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.squareup.okhttp3</groupId>
  60. <artifactId>okhttp</artifactId>
  61. <version>3.14.9</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.apache.httpcomponents</groupId>
  65. <artifactId>httpclient</artifactId>
  66. <version>4.5.13</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.apache.httpcomponents</groupId>
  70. <artifactId>httpmime</artifactId>
  71. <version>4.5.13</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.httpcomponents</groupId>
  75. <artifactId>httpcore</artifactId>
  76. <version>4.4.16</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.apache.commons</groupId>
  80. <artifactId>commons-lang3</artifactId>
  81. <version>3.12.0</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>commons-lang</groupId>
  85. <artifactId>commons-lang</artifactId>
  86. <version>2.6</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>commons-beanutils</groupId>
  90. <artifactId>commons-beanutils</artifactId>
  91. <version>1.9.4</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>commons-io</groupId>
  95. <artifactId>commons-io</artifactId>
  96. <version>2.8.0</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>commons-codec</groupId>
  100. <artifactId>commons-codec</artifactId>
  101. <version>1.15</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>commons-collections</groupId>
  105. <artifactId>commons-collections</artifactId>
  106. <version>3.2.2</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.apache.commons</groupId>
  110. <artifactId>commons-collections4</artifactId>
  111. <version>4.4</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>commons-net</groupId>
  115. <artifactId>commons-net</artifactId>
  116. <version>3.8.0</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>commons-fileupload</groupId>
  120. <artifactId>commons-fileupload</artifactId>
  121. <version>1.4</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.apache.commons</groupId>
  125. <artifactId>commons-compress</artifactId>
  126. <version>1.20</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.apache.commons</groupId>
  130. <artifactId>commons-text</artifactId>
  131. <version>1.9</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>commons-logging</groupId>
  135. <artifactId>commons-logging</artifactId>
  136. <version>1.2</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>commons-configuration</groupId>
  140. <artifactId>commons-configuration</artifactId>
  141. <version>1.10</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.apache.logging.log4j</groupId>
  145. <artifactId>log4j-api</artifactId>
  146. <version>${log4j2.version}</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.apache.logging.log4j</groupId>
  150. <artifactId>log4j-core</artifactId>
  151. <version>${log4j2.version}</version>
  152. </dependency>
  153. <!-- 常用Jars end -->
  154. <!-- Json Jars start -->
  155. <dependency>
  156. <groupId>com.google.code.gson</groupId>
  157. <artifactId>gson</artifactId>
  158. <version>2.8.6</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>com.alibaba</groupId>
  162. <artifactId>fastjson</artifactId>
  163. <version>1.2.83</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>org.json</groupId>
  167. <artifactId>json</artifactId>
  168. <version>20210307</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>com.jayway.jsonpath</groupId>
  172. <artifactId>json-path</artifactId>
  173. <version>2.5.0</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>net.minidev</groupId>
  177. <artifactId>json-smart</artifactId>
  178. <version>2.4.2</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>org.codehaus.jettison</groupId>
  182. <artifactId>jettison</artifactId>
  183. <version>1.5.4</version>
  184. </dependency>
  185. <dependency>
  186. <groupId>net.sf.json-lib</groupId>
  187. <artifactId>json-lib</artifactId>
  188. <version>2.4</version>
  189. <classifier>jdk15</classifier>
  190. </dependency>
  191. <!-- Json Jars end -->
  192. <!-- Swagger Jars start -->
  193. <dependency>
  194. <groupId>com.github.xiaoymin</groupId>
  195. <artifactId>knife4j-spring-boot-starter</artifactId>
  196. <version>2.0.9</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>io.swagger</groupId>
  200. <artifactId>swagger-annotations</artifactId>
  201. <version>1.5.24</version>
  202. </dependency>
  203. <dependency>
  204. <groupId>io.swagger</groupId>
  205. <artifactId>swagger-models</artifactId>
  206. <version>1.5.24</version>
  207. </dependency>
  208. <!-- Swagger Jars end -->
  209. <!-- Sdk Jars start -->
  210. <dependency>
  211. <groupId>com.aliyun</groupId>
  212. <artifactId>aliyun-java-sdk-core</artifactId>
  213. <version>4.5.30</version>
  214. </dependency>
  215. <dependency>
  216. <groupId>com.aliyun.oss</groupId>
  217. <artifactId>aliyun-sdk-oss</artifactId>
  218. <version>3.17.4</version>
  219. </dependency>
  220. <dependency>
  221. <groupId>com.aliyun</groupId>
  222. <artifactId>aliyun-java-sdk-cdn</artifactId>
  223. <version>3.6.9</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>com.aliyun.openservices</groupId>
  227. <artifactId>ons-client</artifactId>
  228. <version>1.8.8.Final</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>com.qcloud</groupId>
  232. <artifactId>cos_api</artifactId>
  233. <version>5.6.205</version>
  234. </dependency>
  235. <dependency>
  236. <groupId>com.baidu.aip</groupId>
  237. <artifactId>java-sdk</artifactId>
  238. <version>4.15.8</version>
  239. <exclusions>
  240. <exclusion>
  241. <groupId>org.slf4j</groupId>
  242. <artifactId>slf4j-simple</artifactId>
  243. </exclusion>
  244. </exclusions>
  245. </dependency>
  246. <dependency>
  247. <groupId>com.upyun</groupId>
  248. <artifactId>java-sdk</artifactId>
  249. <version>3.20</version>
  250. </dependency>
  251. <!-- Sdk Jars end -->
  252. <!-- Excel Jars start -->
  253. <dependency>
  254. <groupId>org.apache.poi</groupId>
  255. <artifactId>poi</artifactId>
  256. <version>3.17</version>
  257. </dependency>
  258. <dependency>
  259. <groupId>org.apache.poi</groupId>
  260. <artifactId>poi-ooxml</artifactId>
  261. <version>3.17</version>
  262. </dependency>
  263. <dependency>
  264. <groupId>org.apache.poi</groupId>
  265. <artifactId>poi-ooxml-schemas</artifactId>
  266. <version>3.17</version>
  267. </dependency>
  268. <dependency>
  269. <groupId>cn.afterturn</groupId>
  270. <artifactId>easypoi-base</artifactId>
  271. <version>4.3.0</version>
  272. </dependency>
  273. <!-- Excel Jars end -->
  274. <!-- Other Jars start -->
  275. <dependency>
  276. <groupId>joda-time</groupId>
  277. <artifactId>joda-time</artifactId>
  278. <version>2.9.9</version>
  279. </dependency>
  280. <dependency>
  281. <groupId>com.squareup.okio</groupId>
  282. <artifactId>okio</artifactId>
  283. <version>1.17.6</version>
  284. </dependency>
  285. <dependency>
  286. <groupId>org.bouncycastle</groupId>
  287. <artifactId>bcprov-jdk15on</artifactId>
  288. <version>1.68</version>
  289. </dependency>
  290. <dependency>
  291. <groupId>org.bouncycastle</groupId>
  292. <artifactId>bcpkix-jdk15on</artifactId>
  293. <version>1.68</version>
  294. </dependency>
  295. <dependency>
  296. <groupId>com.xuxueli</groupId>
  297. <artifactId>xxl-job-core</artifactId>
  298. <version>2.3.1</version>
  299. </dependency>
  300. <!--<dependency>
  301. <groupId>com.microsoft.sqlserver</groupId>
  302. <artifactId>mssql-jdbc</artifactId>
  303. <version>6.4.0.jre8</version>
  304. </dependency>-->
  305. <dependency>
  306. <groupId>org.hibernate</groupId>
  307. <artifactId>hibernate-validator</artifactId>
  308. <version>6.1.7.Final</version>
  309. </dependency>
  310. <dependency>
  311. <groupId>org.docx4j</groupId>
  312. <artifactId>docx4j-ImportXHTML</artifactId>
  313. <version>6.1.0</version>
  314. </dependency>
  315. <dependency>
  316. <groupId>dom4j</groupId>
  317. <artifactId>dom4j</artifactId>
  318. <version>1.6.1</version>
  319. </dependency>
  320. <dependency>
  321. <groupId>org.jsoup</groupId>
  322. <artifactId>jsoup</artifactId>
  323. <version>1.14.2</version>
  324. </dependency>
  325. <dependency>
  326. <groupId>com.itextpdf</groupId>
  327. <artifactId>itextpdf</artifactId>
  328. <version>5.5.13.2</version>
  329. </dependency>
  330. <dependency>
  331. <groupId>org.javassist</groupId>
  332. <artifactId>javassist</artifactId>
  333. <version>3.27.0-GA</version>
  334. </dependency>
  335. <dependency>
  336. <groupId>com.mchange</groupId>
  337. <artifactId>c3p0</artifactId>
  338. <version>0.9.5.5</version>
  339. </dependency>
  340. <dependency>
  341. <groupId>com.thoughtworks.xstream</groupId>
  342. <artifactId>xstream</artifactId>
  343. <version>1.4.16</version>
  344. </dependency>
  345. <dependency>
  346. <groupId>com.googlecode.aviator</groupId>
  347. <artifactId>aviator</artifactId>
  348. <version>5.2.5</version>
  349. </dependency>
  350. <dependency>
  351. <groupId>com.google.code.findbugs</groupId>
  352. <artifactId>jsr305</artifactId>
  353. <version>3.0.2</version>
  354. </dependency>
  355. <dependency>
  356. <groupId>com.mchange</groupId>
  357. <artifactId>mchange-commons-java</artifactId>
  358. <version>0.2.20</version>
  359. </dependency>
  360. <dependency>
  361. <groupId>com.esotericsoftware</groupId>
  362. <artifactId>reflectasm</artifactId>
  363. <version>1.11.9</version>
  364. </dependency>
  365. <dependency>
  366. <groupId>org.jline</groupId>
  367. <artifactId>jline</artifactId>
  368. <version>3.19.0</version>
  369. </dependency>
  370. <dependency>
  371. <groupId>com.github.penggle</groupId>
  372. <artifactId>kaptcha</artifactId>
  373. <version>2.3.2</version>
  374. </dependency>
  375. <dependency>
  376. <groupId>org.scala-lang</groupId>
  377. <artifactId>scala-library</artifactId>
  378. <version>2.13.5</version>
  379. </dependency>
  380. <dependency>
  381. <groupId>net.sourceforge.jeuclid</groupId>
  382. <artifactId>jeuclid-core</artifactId>
  383. <version>3.1.9</version>
  384. </dependency>
  385. <dependency>
  386. <groupId>net.sf.saxon</groupId>
  387. <artifactId>Saxon-HE</artifactId>
  388. <version>10.3</version>
  389. </dependency>
  390. <dependency>
  391. <groupId>org.ansj</groupId>
  392. <artifactId>ansj_seg</artifactId>
  393. <version>5.1.6</version>
  394. </dependency>
  395. <dependency>
  396. <groupId>org.antlr</groupId>
  397. <artifactId>antlr-runtime</artifactId>
  398. <version>3.5.2</version>
  399. </dependency>
  400. <dependency>
  401. <groupId>com.jcraft</groupId>
  402. <artifactId>jsch</artifactId>
  403. <version>0.1.55</version>
  404. </dependency>
  405. <dependency>
  406. <groupId>org.hdrhistogram</groupId>
  407. <artifactId>HdrHistogram</artifactId>
  408. <version>2.1.12</version>
  409. </dependency>
  410. <!-- Other Jars end -->
  411. </dependencies>
  412. </dependencyManagement>
  413. <build>
  414. <plugins>
  415. <plugin>
  416. <groupId>org.apache.maven.plugins</groupId>
  417. <artifactId>maven-surefire-plugin</artifactId>
  418. <version>${maven-surefire-version}</version>
  419. <configuration>
  420. <testFailureIgnore>true</testFailureIgnore>
  421. <skipTests>true</skipTests>
  422. <skip>true</skip>
  423. </configuration>
  424. </plugin>
  425. <plugin>
  426. <groupId>org.apache.maven.plugins</groupId>
  427. <artifactId>maven-compiler-plugin</artifactId>
  428. <version>${maven-compiler-version}</version>
  429. <configuration>
  430. <source>${maven.compiler.source}</source>
  431. <target>${maven.compiler.target}</target>
  432. <encoding>${project.build.sourceEncoding}</encoding>
  433. </configuration>
  434. </plugin>
  435. <plugin>
  436. <groupId>org.apache.maven.plugins</groupId>
  437. <artifactId>maven-deploy-plugin</artifactId>
  438. <version>${maven-deploy-version}</version>
  439. <configuration>
  440. <!--<skip>true</skip>-->
  441. </configuration>
  442. </plugin>
  443. <plugin>
  444. <groupId>org.codehaus.mojo</groupId>
  445. <artifactId>flatten-maven-plugin</artifactId>
  446. <version>${maven-flatten-version}</version>
  447. <configuration>
  448. <updatePomFile>true</updatePomFile>
  449. <flattenMode>resolveCiFriendliesOnly</flattenMode>
  450. <pomElements>
  451. <dependencies>expand</dependencies>
  452. </pomElements>
  453. </configuration>
  454. <executions>
  455. <execution>
  456. <id>flatten</id>
  457. <phase>process-resources</phase>
  458. <goals>
  459. <goal>flatten</goal>
  460. </goals>
  461. </execution>
  462. <execution>
  463. <id>flatten.clean</id>
  464. <phase>clean</phase>
  465. <goals>
  466. <goal>clean</goal>
  467. </goals>
  468. </execution>
  469. </executions>
  470. </plugin>
  471. <!--<plugin>
  472. <groupId>org.springframework.boot</groupId>
  473. <artifactId>spring-boot-maven-plugin</artifactId>
  474. <configuration>
  475. &lt;!&ndash;<mainClass>x.x.x.Application</mainClass>&ndash;&gt;
  476. <layout>ZIP</layout>
  477. </configuration>
  478. <executions>
  479. <execution>
  480. <goals>
  481. <goal>repackage</goal>
  482. </goals>
  483. </execution>
  484. </executions>
  485. </plugin>-->
  486. </plugins>
  487. </build>
  488. <!--<repositories>
  489. <repository>
  490. <id>nexus</id>
  491. <name>nexus</name>
  492. <url>http://192.168.10.201:8081/repository/maven-public/</url>
  493. </repository>
  494. </repositories>
  495. <pluginRepositories>
  496. <pluginRepository>
  497. <id>nexus</id>
  498. <name>nexus</name>
  499. <url>http://192.168.10.201:8081/repository/maven-public/</url>
  500. </pluginRepository>
  501. </pluginRepositories>-->
  502. </project>