pom.xml 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014
  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. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>3.0.1</version>
  10. </parent>
  11. <groupId>com.sundata.project</groupId>
  12. <artifactId>CratProject</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <!-- <packaging>war</packaging>-->
  15. <scm>
  16. <url>scm:git:http://softwarescience.top:3000/ligengpu/SundataProject.git</url>
  17. <connection>http://softwarescience.top:3000/ligengpu/SundataProject.git</connection>
  18. </scm>
  19. <properties>
  20. <maven.compiler.source>17</maven.compiler.source>
  21. <maven.compiler.target>17</maven.compiler.target>
  22. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  23. <maven.build.timestamp.format>yyyy-MM-dd HH:mm:ss.SSS</maven.build.timestamp.format>
  24. </properties>
  25. <dependencyManagement>
  26. <dependencies>
  27. <dependency>
  28. <groupId>com.sun.xml.bind</groupId>
  29. <artifactId>jaxb-impl</artifactId>
  30. <version>2.2.3-1</version> <!-- ehcahe要求使用v2 -->
  31. </dependency>
  32. </dependencies>
  33. </dependencyManagement>
  34. <dependencies>
  35. <!-- war-->
  36. <!-- <dependency>-->
  37. <!-- <groupId>org.springframework.boot</groupId>-->
  38. <!-- <artifactId>spring-boot-starter-tomcat</artifactId>-->
  39. <!-- <scope>provided</scope>-->
  40. <!-- </dependency>-->
  41. <dependency>
  42. <groupId>commons-logging</groupId>
  43. <artifactId>commons-logging</artifactId>
  44. <version>1.2</version>
  45. </dependency>
  46. <!-- <dependency>
  47. <groupId>commons-beanutils</groupId>
  48. <artifactId>commons-beanutils</artifactId>
  49. <version>1.8.3</version>
  50. </dependency>-->
  51. <dependency>
  52. <groupId>commons-collections</groupId>
  53. <artifactId>commons-collections</artifactId>
  54. <version>3.1</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.apache.commons</groupId>
  58. <artifactId>commons-digester3</artifactId>
  59. <version>3.2</version>
  60. <exclusions>
  61. <exclusion>
  62. <groupId>xml-apis</groupId>
  63. <artifactId>xml-apis</artifactId>
  64. </exclusion>
  65. </exclusions>
  66. </dependency>
  67. <dependency>
  68. <groupId>junit</groupId>
  69. <artifactId>junit</artifactId>
  70. <version>4.13.2</version>
  71. <scope>test</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>hsqldb</groupId>
  75. <artifactId>hsqldb</artifactId>
  76. <version>1.8.0.4</version>
  77. <scope>test</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.apache.poi</groupId>
  81. <artifactId>poi</artifactId>
  82. <version>5.2.3</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.apache.poi</groupId>
  86. <artifactId>poi-ooxml</artifactId>
  87. <version>5.2.3</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.apache.commons</groupId>
  91. <artifactId>commons-jexl</artifactId>
  92. <version>2.0.1</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.dom4j</groupId>
  96. <artifactId>dom4j</artifactId>
  97. <version>2.1.3</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-starter-web</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.mybatis.spring.boot</groupId>
  105. <artifactId>mybatis-spring-boot-starter</artifactId>
  106. <version>3.0.1</version>
  107. </dependency>
  108. <!-- 热部署 -->
  109. <dependency>
  110. <groupId>org.springframework.boot</groupId>
  111. <artifactId>spring-boot-devtools</artifactId>
  112. </dependency>
  113. <!-- 工具类使用 -->
  114. <dependency>
  115. <groupId>ch.ethz.ganymed</groupId>
  116. <artifactId>ganymed-ssh2</artifactId>
  117. <version>262</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>javax.mail</groupId>
  121. <artifactId>mail</artifactId>
  122. <version>1.4.3</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.apache.poi</groupId>
  126. <artifactId>poi</artifactId>
  127. <version>5.2.3</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.apache.commons</groupId>
  131. <artifactId>commons-jexl3</artifactId>
  132. <version>3.2.1</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.apache.commons</groupId>
  136. <artifactId>commons-lang3</artifactId>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.apache.commons</groupId>
  140. <artifactId>commons-text</artifactId>
  141. <version>1.10.0</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.apache.httpcomponents</groupId>
  145. <artifactId>httpclient</artifactId>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.bouncycastle</groupId>
  149. <artifactId>bcprov-jdk15to18</artifactId>
  150. <version>1.72</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.quartz-scheduler</groupId>
  154. <artifactId>quartz</artifactId>
  155. </dependency>
  156. <!-- JScriptParserUitl -->
  157. <dependency>
  158. <groupId>org.openjdk.nashorn</groupId>
  159. <artifactId>nashorn-core</artifactId>
  160. <version>15.4</version>
  161. </dependency>
  162. <!-- TransactionConfig -->
  163. <dependency>
  164. <groupId>org.aspectj</groupId>
  165. <artifactId>aspectjweaver</artifactId>
  166. </dependency>
  167. <!-- excel处理 -->
  168. <!-- <dependency>-->
  169. <!-- <groupId>com.sundatasoft.platformIII</groupId>-->
  170. <!-- <artifactId>pageOffice</artifactId>-->
  171. <!-- <version>5.4.0.2.1</version>-->
  172. <!-- </dependency>-->
  173. <!-- 添加Sqlite依赖(可选:如果不需要使用印章功能的话,不需要添加此依赖 )-->
  174. <dependency>
  175. <groupId>org.xerial</groupId>
  176. <artifactId>sqlite-jdbc</artifactId>
  177. </dependency>
  178. <!-- thymeleaf模板-->
  179. <dependency>
  180. <groupId>org.springframework.boot</groupId>
  181. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  182. </dependency>
  183. <!-- 缓存1/2 -->
  184. <dependency>
  185. <groupId>org.springframework.boot</groupId>
  186. <artifactId>spring-boot-starter-data-redis</artifactId>
  187. </dependency>
  188. <!-- 缓存2/2 -->
  189. <dependency>
  190. <groupId>org.springframework.boot</groupId>
  191. <artifactId>spring-boot-starter-cache</artifactId>
  192. </dependency>
  193. <dependency>
  194. <groupId>org.ehcache</groupId>
  195. <artifactId>ehcache</artifactId>
  196. <version>3.10.8</version>
  197. </dependency>
  198. <!-- 解析xml配置文件 -->
  199. <dependency>
  200. <groupId>javax.xml.bind</groupId>
  201. <artifactId>jaxb-api</artifactId>
  202. <version>2.4.0-b180830.0359</version>
  203. </dependency>
  204. <dependency>
  205. <groupId>com.sun.xml.bind</groupId>
  206. <artifactId>jaxb-impl</artifactId>
  207. </dependency>
  208. <dependency>
  209. <groupId>mysql</groupId>
  210. <artifactId>mysql-connector-java</artifactId>
  211. <scope>runtime</scope>
  212. </dependency>
  213. <dependency>
  214. <groupId>org.xerial</groupId>
  215. <artifactId>sqlite-jdbc</artifactId>
  216. <scope>runtime</scope>
  217. </dependency>
  218. <dependency>
  219. <groupId>io.swagger.core.v3</groupId>
  220. <artifactId>swagger-annotations-jakarta</artifactId>
  221. <version>2.2.9</version>
  222. </dependency>
  223. <dependency>
  224. <groupId>org.springframework.boot</groupId>
  225. <artifactId>spring-boot-starter-test</artifactId>
  226. <scope>test</scope>
  227. </dependency>
  228. <dependency>
  229. <groupId>org.springframework.restdocs</groupId>
  230. <artifactId>spring-restdocs-mockmvc</artifactId>
  231. <scope>test</scope>
  232. </dependency>
  233. <dependency>
  234. <groupId>org.apache.jackrabbit</groupId>
  235. <artifactId>jackrabbit-api</artifactId>
  236. <version>2.9.1</version>
  237. <type>jar</type>
  238. </dependency>
  239. <dependency>
  240. <groupId>javax.jcr</groupId>
  241. <artifactId>jcr</artifactId>
  242. <version>1.0</version>
  243. </dependency>
  244. <dependency>
  245. <groupId>org.apache.jackrabbit</groupId>
  246. <artifactId>jackrabbit-core</artifactId>
  247. <version>2.4.0</version>
  248. <exclusions>
  249. <exclusion>
  250. <artifactId>*</artifactId>
  251. <groupId>org.slf4j</groupId>
  252. </exclusion>
  253. </exclusions>
  254. </dependency>
  255. <dependency>
  256. <groupId>javax.transaction</groupId>
  257. <artifactId>jta</artifactId>
  258. <version>1.1</version>
  259. </dependency>
  260. <dependency>
  261. <groupId>bsh</groupId>
  262. <artifactId>bsh</artifactId>
  263. <version>2.0b1</version>
  264. </dependency>
  265. <!-- CreateFlowImg.java 98
  266. List<Element> tranEleList = element.selectNodes("transition");
  267. java.lang.ClassNotFoundException: org.jaxen.JaxenException
  268. 与jdk自带包重复导致编译错误,待验证是否还存在上述问题-->
  269. <dependency>
  270. <groupId>jaxen</groupId>
  271. <artifactId>jaxen</artifactId>
  272. <version>1.2.0</version>
  273. <!--<exclusions>
  274. <exclusion>
  275. <artifactId>icu4j</artifactId>
  276. <groupId>com.ibm.icu</groupId>
  277. </exclusion>
  278. </exclusions>-->
  279. </dependency>
  280. <dependency>
  281. <groupId>org.apache.poi</groupId>
  282. <artifactId>poi-ooxml</artifactId>
  283. <version>5.2.3</version>
  284. </dependency>
  285. <dependency>
  286. <groupId>org.apache.poi</groupId>
  287. <artifactId>poi-examples</artifactId>
  288. <version>5.2.3</version>
  289. </dependency>
  290. <dependency>
  291. <groupId>org.apache.poi</groupId>
  292. <artifactId>poi-excelant</artifactId>
  293. <version>5.2.3</version>
  294. </dependency>
  295. <!-- <dependency>-->
  296. <!-- <groupId>org.apache.poi</groupId>-->
  297. <!-- <artifactId>poi-ooxml-schemas</artifactId>-->
  298. <!-- <version>4.1.2</version>-->
  299. <!-- </dependency>-->
  300. <!-- 若不引入,则RdpAnalysisAction.java类中报错,ChartReareaDomain.java类中报错 -->
  301. <dependency>
  302. <groupId>org.apache.xmlgraphics</groupId>
  303. <artifactId>batik-transcoder</artifactId>
  304. <version>1.16</version>
  305. </dependency>
  306. <!-- 若不引入,则TableReareaDomain.java类中报错 -->
  307. <dependency>
  308. <groupId>org.jsoup</groupId>
  309. <artifactId>jsoup</artifactId>
  310. <version>1.15.3</version>
  311. </dependency>
  312. <dependency>
  313. <groupId>net.sf.json-lib</groupId>
  314. <artifactId>json-lib</artifactId>
  315. <version>2.4</version>
  316. <classifier>jdk15</classifier>
  317. </dependency>
  318. <!-- 测试时复杂对象json转换使用 -->
  319. <dependency>
  320. <groupId>com.google.code.gson</groupId>
  321. <artifactId>gson</artifactId>
  322. <version>2.8.9</version>
  323. </dependency>
  324. <!-- 数据库驱动,可根据项目需要保留其中之一 -->
  325. <!-- <dependency>-->
  326. <!-- <groupId>com.sundatasoft.platformII</groupId>-->
  327. <!-- <artifactId>ojdbc7</artifactId>-->
  328. <!-- <version>12.1.0</version>-->
  329. <!-- <scope>runtime</scope>-->
  330. <!-- </dependency>-->
  331. <!-- <dependency>-->
  332. <!-- <groupId>com.sundatasoft.platform</groupId>-->
  333. <!-- <artifactId>db2jcc4</artifactId>-->
  334. <!-- <version>20151001</version>-->
  335. <!-- <scope>runtime</scope>-->
  336. <!-- </dependency>-->
  337. <!-- <dependency>-->
  338. <!-- <groupId>com.sundatasoft.platform</groupId>-->
  339. <!-- <artifactId>db2jcc_license_cu</artifactId>-->
  340. <!-- <version>20151001</version>-->
  341. <!-- <scope>runtime</scope>-->
  342. <!-- </dependency>-->
  343. <!--人大金仓 -->
  344. <!-- <dependency>-->
  345. <!-- <groupId>com.sundatasoft.platformIII</groupId>-->
  346. <!-- <artifactId>kingbase8</artifactId>-->
  347. <!-- <version>8.6.0</version>-->
  348. <!-- </dependency>-->
  349. <dependency>
  350. <groupId>cn.com.kingbase</groupId>
  351. <artifactId>kingbase8</artifactId>
  352. <version>8.6.0</version>
  353. </dependency>
  354. <!-- mq start-->
  355. <!-- <dependency>-->
  356. <!-- <groupId>com.sundatasoft.platformII.ibmmq</groupId>-->
  357. <!-- <artifactId>headers</artifactId>-->
  358. <!-- <version>8.0.0.4</version>-->
  359. <!-- </dependency>-->
  360. <!-- <dependency>-->
  361. <!-- <groupId>com.sundatasoft.platformII.ibmmq</groupId>-->
  362. <!-- <artifactId>jmqi</artifactId>-->
  363. <!-- <version>8.0.0.4</version>-->
  364. <!-- </dependency>-->
  365. <!-- <dependency>-->
  366. <!-- <groupId>com.sundatasoft.platformII.ibmmq</groupId>-->
  367. <!-- <artifactId>mq</artifactId>-->
  368. <!-- <version>8.0.0.4</version>-->
  369. <!-- </dependency>-->
  370. <!-- mq end -->
  371. <!-- ReceiveSoapServlet类引用javax.xml.messaging.JAXMServlet -->
  372. <!-- &lt;!&ndash; 废弃&ndash;&gt; <dependency>-->
  373. <!-- <groupId>com.sundatasoft.platform</groupId>-->
  374. <!-- <artifactId>jaxm-api</artifactId>-->
  375. <!-- <version>20030214</version>-->
  376. <!-- </dependency>-->
  377. <!--ReceiveSoapServlet -->
  378. <!-- socket通讯 -->
  379. <dependency>
  380. <groupId>org.apache.mina</groupId>
  381. <artifactId>mina-core</artifactId>
  382. <version>2.0.13</version>
  383. </dependency>
  384. <dependency>
  385. <groupId>jakarta.xml.soap</groupId>
  386. <artifactId>jakarta.xml.soap-api</artifactId>
  387. </dependency>
  388. <dependency>
  389. <groupId>jakarta.xml.ws</groupId>
  390. <artifactId>jakarta.xml.ws-api</artifactId>
  391. </dependency>
  392. <dependency>
  393. <groupId>com.sun.xml.ws</groupId>
  394. <artifactId>jaxws-rt</artifactId>
  395. <version>3.0.0</version>
  396. <!-- <scope>runtime</scope>-->
  397. </dependency>
  398. <!--@Resource -->
  399. <dependency>
  400. <groupId>javax.xml.ws</groupId>
  401. <artifactId>jaxws-api</artifactId>
  402. <version>2.3.1</version>
  403. </dependency>
  404. <dependency>
  405. <groupId>org.springframework</groupId>
  406. <artifactId>spring-test</artifactId>
  407. <scope>test</scope>
  408. </dependency>
  409. <dependency>
  410. <groupId>org.jgrapht</groupId>
  411. <artifactId>jgrapht-core</artifactId>
  412. <version>1.5.2</version>
  413. </dependency>
  414. <dependency>
  415. <groupId>com.lmax</groupId>
  416. <artifactId>disruptor</artifactId>
  417. <version>4.0.0</version>
  418. </dependency>
  419. <dependency>
  420. <groupId>com.j2html</groupId>
  421. <artifactId>j2html</artifactId>
  422. <version>1.6.0</version>
  423. </dependency>
  424. <dependency>
  425. <groupId>io.javalin</groupId>
  426. <artifactId>javalin</artifactId>
  427. <version>6.4.0</version>
  428. </dependency>
  429. <dependency>
  430. <groupId>com.oracle.ojdbc</groupId>
  431. <artifactId>ojdbc8</artifactId>
  432. <version>19.3.0.0</version>
  433. </dependency>
  434. <dependency>
  435. <groupId>cn.hutool</groupId>
  436. <artifactId>hutool-all</artifactId>
  437. <version>5.8.32</version>
  438. </dependency>
  439. <dependency>
  440. <groupId>org.apache.groovy</groupId>
  441. <artifactId>groovy-all</artifactId>
  442. <version>4.0.25</version>
  443. <type>pom</type>
  444. </dependency>
  445. <dependency>
  446. <groupId>org.apache.calcite</groupId>
  447. <artifactId>calcite-plus</artifactId>
  448. <version>1.38.0</version>
  449. </dependency>
  450. <dependency>
  451. <groupId>org.apache.calcite</groupId>
  452. <artifactId>calcite-function</artifactId>
  453. <version>1.38.0</version>
  454. </dependency>
  455. <dependency>
  456. <groupId>org.apache.calcite</groupId>
  457. <artifactId>calcite-core</artifactId>
  458. <version>1.38.0</version>
  459. </dependency>
  460. <dependency>
  461. <groupId>org.apache.calcite</groupId>
  462. <artifactId>calcite-file</artifactId>
  463. <version>1.38.0</version>
  464. </dependency>
  465. <dependency>
  466. <groupId>org.apache.calcite</groupId>
  467. <artifactId>calcite-linq4j</artifactId>
  468. <version>1.38.0</version>
  469. </dependency>
  470. <dependency>
  471. <groupId>org.locationtech.jts</groupId>
  472. <artifactId>jts-core</artifactId>
  473. <version>1.19.0</version>
  474. </dependency>
  475. <dependency>
  476. <groupId>org.locationtech.jts.io</groupId>
  477. <artifactId>jts-io-common</artifactId>
  478. <version>1.19.0</version>
  479. </dependency>
  480. <dependency>
  481. <groupId>org.locationtech.proj4j</groupId>
  482. <artifactId>proj4j</artifactId>
  483. <version>1.2.2</version>
  484. </dependency>
  485. <dependency>
  486. <groupId>com.fasterxml.jackson.core</groupId>
  487. <artifactId>jackson-annotations</artifactId>
  488. <version>2.15.2</version>
  489. </dependency>
  490. <dependency>
  491. <groupId>com.google.errorprone</groupId>
  492. <artifactId>error_prone_annotations</artifactId>
  493. <version>2.28.0</version>
  494. </dependency>
  495. <dependency>
  496. <groupId>com.google.guava</groupId>
  497. <artifactId>guava</artifactId>
  498. <version>33.3.0-jre</version>
  499. </dependency>
  500. <dependency>
  501. <groupId>org.apache.calcite.avatica</groupId>
  502. <artifactId>avatica-core</artifactId>
  503. <version>1.25.0</version>
  504. </dependency>
  505. <dependency>
  506. <groupId>org.apiguardian</groupId>
  507. <artifactId>apiguardian-api</artifactId>
  508. <version>1.1.2</version>
  509. </dependency>
  510. <dependency>
  511. <groupId>org.checkerframework</groupId>
  512. <artifactId>checker-qual</artifactId>
  513. <version>3.43.0</version>
  514. </dependency>
  515. <!-- <dependency>-->
  516. <!-- <groupId>org.slf4j</groupId>-->
  517. <!-- <artifactId>slf4j-api</artifactId>-->
  518. <!-- <version>1.7.25</version>-->
  519. <!-- </dependency>-->
  520. <dependency>
  521. <groupId>com.fasterxml.jackson.core</groupId>
  522. <artifactId>jackson-core</artifactId>
  523. <version>2.15.2</version>
  524. </dependency>
  525. <dependency>
  526. <groupId>com.fasterxml.jackson.core</groupId>
  527. <artifactId>jackson-databind</artifactId>
  528. <version>2.15.2</version>
  529. </dependency>
  530. <dependency>
  531. <groupId>com.fasterxml.jackson.dataformat</groupId>
  532. <artifactId>jackson-dataformat-yaml</artifactId>
  533. <version>2.15.2</version>
  534. </dependency>
  535. <dependency>
  536. <groupId>com.google.uzaygezen</groupId>
  537. <artifactId>uzaygezen-core</artifactId>
  538. <version>0.2</version>
  539. </dependency>
  540. <dependency>
  541. <groupId>com.jayway.jsonpath</groupId>
  542. <artifactId>json-path</artifactId>
  543. <version>2.9.0</version>
  544. </dependency>
  545. <dependency>
  546. <groupId>com.yahoo.datasketches</groupId>
  547. <artifactId>sketches-core</artifactId>
  548. <version>0.9.0</version>
  549. </dependency>
  550. <dependency>
  551. <groupId>commons-codec</groupId>
  552. <artifactId>commons-codec</artifactId>
  553. <version>1.16.0</version>
  554. <!-- <scope>runtime</scope>-->
  555. <exclusions>
  556. <exclusion>
  557. <groupId>org.jetbrains</groupId>
  558. <artifactId>annotations</artifactId>
  559. </exclusion>
  560. <exclusion>
  561. <groupId>org.bouncycastle</groupId>
  562. <artifactId>bcprov-jdk15on</artifactId>
  563. </exclusion>
  564. </exclusions>
  565. </dependency>
  566. <dependency>
  567. <groupId>net.hydromatic</groupId>
  568. <artifactId>aggdesigner-algorithm</artifactId>
  569. <version>6.0</version>
  570. <!-- <scope>runtime</scope>-->
  571. <exclusions>
  572. <exclusion>
  573. <groupId>org.jetbrains</groupId>
  574. <artifactId>annotations</artifactId>
  575. </exclusion>
  576. <exclusion>
  577. <groupId>org.bouncycastle</groupId>
  578. <artifactId>bcprov-jdk15on</artifactId>
  579. </exclusion>
  580. </exclusions>
  581. </dependency>
  582. <dependency>
  583. <groupId>org.apache.commons</groupId>
  584. <artifactId>commons-dbcp2</artifactId>
  585. <version>2.11.0</version>
  586. <!-- <scope>runtime</scope>-->
  587. <exclusions>
  588. <exclusion>
  589. <groupId>org.jetbrains</groupId>
  590. <artifactId>annotations</artifactId>
  591. </exclusion>
  592. <exclusion>
  593. <groupId>org.bouncycastle</groupId>
  594. <artifactId>bcprov-jdk15on</artifactId>
  595. </exclusion>
  596. </exclusions>
  597. </dependency>
  598. <dependency>
  599. <groupId>org.apache.commons</groupId>
  600. <artifactId>commons-lang3</artifactId>
  601. <version>3.13.0</version>
  602. <!-- <scope>runtime</scope>-->
  603. <exclusions>
  604. <exclusion>
  605. <groupId>org.jetbrains</groupId>
  606. <artifactId>annotations</artifactId>
  607. </exclusion>
  608. <exclusion>
  609. <groupId>org.bouncycastle</groupId>
  610. <artifactId>bcprov-jdk15on</artifactId>
  611. </exclusion>
  612. </exclusions>
  613. </dependency>
  614. <dependency>
  615. <groupId>org.apache.commons</groupId>
  616. <artifactId>commons-math3</artifactId>
  617. <version>3.6.1</version>
  618. <!-- <scope>runtime</scope>-->
  619. <exclusions>
  620. <exclusion>
  621. <groupId>org.jetbrains</groupId>
  622. <artifactId>annotations</artifactId>
  623. </exclusion>
  624. <exclusion>
  625. <groupId>org.bouncycastle</groupId>
  626. <artifactId>bcprov-jdk15on</artifactId>
  627. </exclusion>
  628. </exclusions>
  629. </dependency>
  630. <dependency>
  631. <groupId>org.apache.commons</groupId>
  632. <artifactId>commons-text</artifactId>
  633. <version>1.11.0</version>
  634. <!-- <scope>runtime</scope>-->
  635. <exclusions>
  636. <exclusion>
  637. <groupId>org.jetbrains</groupId>
  638. <artifactId>annotations</artifactId>
  639. </exclusion>
  640. <exclusion>
  641. <groupId>org.bouncycastle</groupId>
  642. <artifactId>bcprov-jdk15on</artifactId>
  643. </exclusion>
  644. </exclusions>
  645. </dependency>
  646. <dependency>
  647. <groupId>commons-io</groupId>
  648. <artifactId>commons-io</artifactId>
  649. <version>2.15.0</version>
  650. <!-- <scope>runtime</scope>-->
  651. <exclusions>
  652. <exclusion>
  653. <groupId>org.jetbrains</groupId>
  654. <artifactId>annotations</artifactId>
  655. </exclusion>
  656. <exclusion>
  657. <groupId>org.bouncycastle</groupId>
  658. <artifactId>bcprov-jdk15on</artifactId>
  659. </exclusion>
  660. </exclusions>
  661. </dependency>
  662. <dependency>
  663. <groupId>org.codehaus.janino</groupId>
  664. <artifactId>commons-compiler</artifactId>
  665. <version>3.1.11</version>
  666. <!-- <scope>runtime</scope>-->
  667. <exclusions>
  668. <exclusion>
  669. <groupId>org.jetbrains</groupId>
  670. <artifactId>annotations</artifactId>
  671. </exclusion>
  672. <exclusion>
  673. <groupId>org.bouncycastle</groupId>
  674. <artifactId>bcprov-jdk15on</artifactId>
  675. </exclusion>
  676. </exclusions>
  677. </dependency>
  678. <dependency>
  679. <groupId>org.codehaus.janino</groupId>
  680. <artifactId>janino</artifactId>
  681. <version>3.1.11</version>
  682. <!-- <scope>runtime</scope>-->
  683. <exclusions>
  684. <exclusion>
  685. <groupId>org.jetbrains</groupId>
  686. <artifactId>annotations</artifactId>
  687. </exclusion>
  688. <exclusion>
  689. <groupId>org.bouncycastle</groupId>
  690. <artifactId>bcprov-jdk15on</artifactId>
  691. </exclusion>
  692. </exclusions>
  693. </dependency>
  694. <!--独立使用时添加
  695. <dependency>
  696. <groupId>net.sf.json-lib</groupId>
  697. <artifactId>json-lib</artifactId>
  698. <version>2.4</version>
  699. <classifier>jdk15</classifier>
  700. </dependency>
  701. <dependency>
  702. <groupId>jaxen</groupId>
  703. <artifactId>jaxen</artifactId>
  704. </dependency>
  705. <dependency>
  706. <groupId>bsh</groupId>
  707. <artifactId>bsh</artifactId>
  708. <version>2.0b1</version>
  709. </dependency> -->
  710. <!--<dependency>
  711. <groupId>xom</groupId>
  712. <artifactId>xom</artifactId>
  713. <version>1.2.5</version>
  714. <exclusions>
  715. <exclusion>
  716. <groupId>xml-apis</groupId>
  717. <artifactId>xml-apis</artifactId>
  718. </exclusion>
  719. <exclusion>
  720. <groupId>org.apache.xmlbeans</groupId>
  721. <artifactId>xmlbeans</artifactId>
  722. </exclusion>
  723. </exclusions>
  724. </dependency>-->
  725. <!-- 公司产品 -->
  726. <dependency>
  727. <groupId>com.sundatasoft.platformIII</groupId>
  728. <artifactId>sd-base-jxls</artifactId>
  729. <version>1.0.6.2</version>
  730. <scope>system</scope>
  731. <systemPath>${project.basedir}/localLibs/sd-base-jxls-1.0.6.2.jar</systemPath>
  732. </dependency>
  733. <dependency>
  734. <groupId>com.sundatasoft.platformIII</groupId>
  735. <artifactId>sd-prod-baseFrame</artifactId>
  736. <version>3.240429.1.updating</version>
  737. <scope>system</scope>
  738. <systemPath>${project.basedir}/localLibs/sd-prod-baseFrame-3.240708.1.jar</systemPath>
  739. </dependency>
  740. <!--<dependency>
  741. <groupId>com.sundatasoft.platformIII</groupId>
  742. <artifactId>sd-prod-flowEng</artifactId>
  743. <version>3.230811.1</version>
  744. <scope>system</scope>
  745. <systemPath>${project.basedir}/localLibs/sd-prod-flowEng-3.230811.1.jar</systemPath>
  746. </dependency>-->
  747. <dependency>
  748. <groupId>com.sundatasoft.platformIII</groupId>
  749. <artifactId>sd-prod-prodBase</artifactId>
  750. <version>3.230811.1.updating</version>
  751. <scope>system</scope>
  752. <systemPath>${project.basedir}/localLibs/sd-prod-prodBase-3.240708.1.jar</systemPath>
  753. <exclusions>
  754. <exclusion>
  755. <groupId>com.sundatasoft.platformIII</groupId>
  756. <artifactId>sd-prod-baseFrame</artifactId>
  757. </exclusion>
  758. </exclusions>
  759. </dependency>
  760. <dependency>
  761. <groupId>com.sundatasoft.platformIII</groupId>
  762. <artifactId>sd-prod-rfEngine</artifactId>
  763. <version>3.240708.1</version>
  764. <scope>system</scope>
  765. <systemPath>${project.basedir}/localLibs/sd-prod-rfEngine-3.240708.1.jar</systemPath>
  766. <exclusions>
  767. <exclusion>
  768. <groupId>com.sundatasoft.platformIII</groupId>
  769. <artifactId>sd-prod-prodBase</artifactId>
  770. </exclusion>
  771. </exclusions>
  772. </dependency>
  773. <dependency>
  774. <groupId>com.sundatasoft.platformIII</groupId>
  775. <artifactId>sd-prod-rtDev</artifactId>
  776. <version>3.241209.1</version>
  777. <scope>system</scope>
  778. <systemPath>${project.basedir}/localLibs/sd-prod-rtDev-3.241209.1.jar</systemPath>
  779. </dependency>
  780. <dependency>
  781. <groupId>com.sundatasoft.platformIII</groupId>
  782. <artifactId>sd-prod-commEng</artifactId>
  783. <version>3.230817.1.updating</version>
  784. <scope>system</scope>
  785. <systemPath>${project.basedir}/localLibs/sd-prod-commEng-3.230817.1.updating.jar</systemPath>
  786. </dependency>
  787. <dependency>
  788. <groupId>com.sundatasoft.platformII.ibmmq</groupId>
  789. <artifactId>headers</artifactId>
  790. <version>8.0.0.4</version>
  791. <scope>system</scope>
  792. <systemPath>${project.basedir}/localLibs/headers-8.0.0.4.jar</systemPath>
  793. </dependency>
  794. <dependency>
  795. <groupId>com.sundatasoft.platformII.ibmmq</groupId>
  796. <artifactId>jmqi</artifactId>
  797. <version>8.0.0.4</version>
  798. <scope>system</scope>
  799. <systemPath>${project.basedir}/localLibs/jmqi-8.0.0.4.jar</systemPath>
  800. </dependency>
  801. <dependency>
  802. <groupId>com.sundatasoft.platformII.ibmmq</groupId>
  803. <artifactId>mq</artifactId>
  804. <version>8.0.0.4</version>
  805. <scope>system</scope>
  806. <systemPath>${project.basedir}/localLibs/mq-8.0.0.4.jar</systemPath>
  807. </dependency>
  808. </dependencies>
  809. <repositories>
  810. <repository>
  811. <id>central</id>
  812. <url>https://maven.aliyun.com/repository/central</url>
  813. <releases>
  814. <enabled>true</enabled>
  815. </releases>
  816. <snapshots>
  817. <enabled>true</enabled>
  818. </snapshots>
  819. </repository>
  820. <repository>
  821. <id>public</id>
  822. <url>https://maven.aliyun.com/repository/public</url>
  823. <releases>
  824. <enabled>true</enabled>
  825. </releases>
  826. <snapshots>
  827. <enabled>true</enabled>
  828. </snapshots>
  829. </repository>
  830. </repositories>
  831. <build>
  832. <!-- <finalName>crat.war</finalName>-->
  833. <resources>
  834. <!-- 打jar包时包括xml -->
  835. <resource>
  836. <directory>src/main/java</directory>
  837. <includes>
  838. <include>**/*.xml</include>
  839. </includes>
  840. </resource>
  841. <resource>
  842. <directory>src/main/resources</directory>
  843. <excludes>
  844. <exclude>application*.yml</exclude>
  845. <!-- <exclude>conTemplate.doc</exclude>-->
  846. </excludes>
  847. </resource>
  848. <resource>
  849. <directory>src/main/resources</directory>
  850. <filtering>true</filtering>
  851. <includes>
  852. <!--suppress UnresolvedMavenProperty -->
  853. <include>application-${profiles.active}.yml</include>
  854. <include>application.yml</include>
  855. <include>ehcache-spring.xml</include>
  856. <include>logback-spring.xml</include>
  857. <include>mybatis-config.xml</include>
  858. <include>readOffice.html</include>
  859. </includes>
  860. </resource>
  861. <resource>
  862. <directory>src/main/resources</directory>
  863. <filtering>false</filtering>
  864. <includes>
  865. <include>conTemplate.doc</include>
  866. </includes>
  867. </resource>
  868. </resources>
  869. <plugins>
  870. <plugin>
  871. <groupId>org.apache.maven.plugins</groupId>
  872. <artifactId>maven-compiler-plugin</artifactId>
  873. <configuration>
  874. <source>17</source>
  875. <target>17</target>
  876. <encoding>UTF-8</encoding>
  877. <compilerArguments>
  878. <extdirs>${project.basedir}/localLibs</extdirs>
  879. </compilerArguments>
  880. </configuration>
  881. </plugin>
  882. <plugin>
  883. <groupId>org.springframework.boot</groupId>
  884. <artifactId>spring-boot-maven-plugin</artifactId>
  885. <configuration>
  886. <includeSystemScope>true</includeSystemScope>
  887. </configuration>
  888. </plugin>
  889. <plugin>
  890. <groupId>org.apache.maven.plugins</groupId>
  891. <artifactId>maven-jar-plugin</artifactId>
  892. <configuration>
  893. <archive>
  894. <manifestEntries>
  895. <Implementation-Version>${project.version}</Implementation-Version>
  896. <Build-Time>${timestamp}</Build-Time>
  897. <Build-User>${user.name}</Build-User>
  898. </manifestEntries>
  899. </archive>
  900. </configuration>
  901. </plugin>
  902. <plugin>
  903. <groupId>org.asciidoctor</groupId>
  904. <artifactId>asciidoctor-maven-plugin</artifactId>
  905. <version>2.2.1</version>
  906. <executions>
  907. <execution>
  908. <id>generate-docs</id>
  909. <phase>prepare-package</phase>
  910. <goals>
  911. <goal>process-asciidoc</goal>
  912. </goals>
  913. <configuration>
  914. <backend>html</backend>
  915. <doctype>book</doctype>
  916. </configuration>
  917. </execution>
  918. </executions>
  919. <dependencies>
  920. <dependency>
  921. <groupId>org.springframework.restdocs</groupId>
  922. <artifactId>spring-restdocs-asciidoctor</artifactId>
  923. <version>${spring-restdocs.version}</version>
  924. </dependency>
  925. </dependencies>
  926. </plugin>
  927. </plugins>
  928. <finalName>${project.name}_${version}_${profiles.active}</finalName>
  929. </build>
  930. <profiles>
  931. <profile>
  932. <id>dev</id>
  933. <properties>
  934. <profiles.active>dev</profiles.active>
  935. <maven.test.skip>true</maven.test.skip>
  936. </properties>
  937. <activation>
  938. <activeByDefault>true</activeByDefault>
  939. </activation>
  940. </profile>
  941. <profile>
  942. <id>sit01</id>
  943. <properties>
  944. <profiles.active>sit01</profiles.active>
  945. <maven.test.skip>false</maven.test.skip>
  946. </properties>
  947. </profile>
  948. <profile>
  949. <id>sit02</id>
  950. <properties>
  951. <profiles.active>sit02</profiles.active>
  952. <maven.test.skip>false</maven.test.skip>
  953. </properties>
  954. </profile>
  955. <profile>
  956. <id>uat01</id>
  957. <properties>
  958. <profiles.active>uat01</profiles.active>
  959. <maven.test.skip>false</maven.test.skip>
  960. </properties>
  961. </profile>
  962. <profile>
  963. <id>uat02</id>
  964. <properties>
  965. <profiles.active>uat02</profiles.active>
  966. <maven.test.skip>false</maven.test.skip>
  967. </properties>
  968. </profile>
  969. <profile>
  970. <id>prod</id>
  971. <properties>
  972. <profiles.active>prod</profiles.active>
  973. <maven.test.skip>false</maven.test.skip>
  974. </properties>
  975. </profile>
  976. </profiles>
  977. </project>