pom.xml 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843
  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
  5. http://maven.apache.org/xsd/maven-4.0.0.xsd">
  6. <modelVersion>4.0.0</modelVersion>
  7. <parent>
  8. <groupId>org.springframework.boot</groupId>
  9. <artifactId>spring-boot-starter-parent</artifactId>
  10. <version>2.5.14</version>
  11. <relativePath/>
  12. </parent>
  13. <groupId>cn.sinobest</groupId>
  14. <artifactId>yctb</artifactId>
  15. <version>1.0.0</version>
  16. <packaging>war</packaging>
  17. <name>yctb</name>
  18. <description>湛江人社一窗通办系统</description>
  19. <properties>
  20. <java.version>17</java.version>
  21. <maven.compiler.source>17</maven.compiler.source>
  22. <maven.compiler.target>17</maven.compiler.target>
  23. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  24. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  25. <!-- 锁定关键版本 -->
  26. <hibernate.version>5.6.15.Final</hibernate.version>
  27. <struts2.version>2.3.37</struts2.version>
  28. </properties>
  29. <dependencies>
  30. <!-- ==================== Spring Boot Starters ==================== -->
  31. <!-- Web Starter(排除 Logback,项目使用 Log4j 1.x)-->
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-web</artifactId>
  35. <exclusions>
  36. <exclusion>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-logging</artifactId>
  39. </exclusion>
  40. <!-- 排除内嵌的 Jackson 2.x,项目使用 Jackson 1.x -->
  41. <exclusion>
  42. <groupId>com.fasterxml.jackson.core</groupId>
  43. <artifactId>jackson-databind</artifactId>
  44. </exclusion>
  45. <exclusion>
  46. <groupId>com.fasterxml.jackson.core</groupId>
  47. <artifactId>jackson-core</artifactId>
  48. </exclusion>
  49. <exclusion>
  50. <groupId>com.fasterxml.jackson.core</groupId>
  51. <artifactId>jackson-annotations</artifactId>
  52. </exclusion>
  53. </exclusions>
  54. </dependency>
  55. <!-- Log4j 1.x 支持 -->
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-log4j</artifactId>
  59. <version>1.3.8.RELEASE</version>
  60. </dependency>
  61. <!-- JDBC 支持(提供 JdbcTemplate、DaoSupport 等)-->
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-jdbc</artifactId>
  65. <exclusions>
  66. <exclusion>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter-logging</artifactId>
  69. </exclusion>
  70. </exclusions>
  71. </dependency>
  72. <!-- Spring ORM(提供 hibernate4.LocalSessionFactoryBean 等)-->
  73. <dependency>
  74. <groupId>org.springframework</groupId>
  75. <artifactId>spring-orm</artifactId>
  76. </dependency>
  77. <!-- Spring Context Support(提供 Quartz SchedulerFactoryBean 等)-->
  78. <dependency>
  79. <groupId>org.springframework</groupId>
  80. <artifactId>spring-context-support</artifactId>
  81. </dependency>
  82. <!-- 内嵌 Tomcat -->
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-starter-tomcat</artifactId>
  86. </dependency>
  87. <!-- JSP 支持 -->
  88. <dependency>
  89. <groupId>org.apache.tomcat.embed</groupId>
  90. <artifactId>tomcat-embed-jasper</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>javax.servlet</groupId>
  94. <artifactId>javax.servlet-api</artifactId>
  95. <version>4.0.1</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>javax.servlet.jsp</groupId>
  99. <artifactId>javax.servlet.jsp-api</artifactId>
  100. <version>2.3.3</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.glassfish</groupId>
  104. <artifactId>javax.el</artifactId>
  105. <version>3.0.0</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>javax.servlet</groupId>
  109. <artifactId>jstl</artifactId>
  110. </dependency>
  111. <!-- ==================== Struts 2 ==================== -->
  112. <dependency>
  113. <groupId>org.apache.struts</groupId>
  114. <artifactId>struts2-core</artifactId>
  115. <version>${struts2.version}</version>
  116. <exclusions>
  117. <exclusion>
  118. <groupId>javassist</groupId>
  119. <artifactId>javassist</artifactId>
  120. </exclusion>
  121. </exclusions>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.apache.struts</groupId>
  125. <artifactId>struts2-convention-plugin</artifactId>
  126. <version>${struts2.version}</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.apache.struts</groupId>
  130. <artifactId>struts2-spring-plugin</artifactId>
  131. <version>${struts2.version}</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.apache.struts</groupId>
  135. <artifactId>struts2-config-browser-plugin</artifactId>
  136. <version>${struts2.version}</version>
  137. </dependency>
  138. <!-- ==================== Hibernate 5 ==================== -->
  139. <dependency>
  140. <groupId>org.hibernate</groupId>
  141. <artifactId>hibernate-core</artifactId>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.hibernate</groupId>
  145. <artifactId>hibernate-ehcache</artifactId>
  146. </dependency>
  147. <!-- ==================== 数据库 ==================== -->
  148. <!-- 达梦数据库驱动 -->
  149. <dependency>
  150. <groupId>com.dameng</groupId>
  151. <artifactId>DmJdbcDriver18</artifactId>
  152. <version>8.1.1.193</version>
  153. </dependency>
  154. <!-- Oracle数据库驱动(保留用于兼容)-->
  155. <dependency>
  156. <groupId>com.oracle.database.jdbc</groupId>
  157. <artifactId>ojdbc8</artifactId>
  158. <version>19.3.0.0</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>commons-dbcp</groupId>
  162. <artifactId>commons-dbcp</artifactId>
  163. <version>1.4</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>commons-pool</groupId>
  167. <artifactId>commons-pool</artifactId>
  168. <version>1.5.4</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>c3p0</groupId>
  172. <artifactId>c3p0</artifactId>
  173. <version>0.9.1.2</version>
  174. </dependency>
  175. <!-- ==================== JSON ==================== -->
  176. <dependency>
  177. <groupId>org.codehaus.jackson</groupId>
  178. <artifactId>jackson-mapper-asl</artifactId>
  179. <version>1.7.1</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>com.alibaba</groupId>
  183. <artifactId>fastjson</artifactId>
  184. <version>1.2.22</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>com.google.code.gson</groupId>
  188. <artifactId>gson</artifactId>
  189. <version>2.9.0</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>net.sf.json-lib</groupId>
  193. <artifactId>json-lib</artifactId>
  194. <version>2.4</version>
  195. <classifier>jdk15</classifier>
  196. </dependency>
  197. <dependency>
  198. <groupId>net.sf.ezmorph</groupId>
  199. <artifactId>ezmorph</artifactId>
  200. <version>1.0.6</version>
  201. </dependency>
  202. <!-- ==================== Apache Commons ==================== -->
  203. <dependency>
  204. <groupId>commons-lang</groupId>
  205. <artifactId>commons-lang</artifactId>
  206. <version>2.5</version>
  207. </dependency>
  208. <dependency>
  209. <groupId>org.apache.commons</groupId>
  210. <artifactId>commons-lang3</artifactId>
  211. <version>3.1</version>
  212. </dependency>
  213. <dependency>
  214. <groupId>commons-io</groupId>
  215. <artifactId>commons-io</artifactId>
  216. <version>1.3.2</version>
  217. </dependency>
  218. <dependency>
  219. <groupId>commons-beanutils</groupId>
  220. <artifactId>commons-beanutils</artifactId>
  221. <version>1.9.3</version>
  222. </dependency>
  223. <dependency>
  224. <groupId>commons-codec</groupId>
  225. <artifactId>commons-codec</artifactId>
  226. <version>1.10</version>
  227. </dependency>
  228. <dependency>
  229. <groupId>commons-collections</groupId>
  230. <artifactId>commons-collections</artifactId>
  231. <version>3.2.1</version>
  232. </dependency>
  233. <dependency>
  234. <groupId>org.apache.commons</groupId>
  235. <artifactId>commons-collections4</artifactId>
  236. <version>4.1</version>
  237. </dependency>
  238. <dependency>
  239. <groupId>commons-fileupload</groupId>
  240. <artifactId>commons-fileupload</artifactId>
  241. <version>1.3.3</version>
  242. </dependency>
  243. <dependency>
  244. <groupId>commons-httpclient</groupId>
  245. <artifactId>commons-httpclient</artifactId>
  246. <version>3.1</version>
  247. </dependency>
  248. <dependency>
  249. <groupId>commons-logging</groupId>
  250. <artifactId>commons-logging</artifactId>
  251. <version>1.1.3</version>
  252. </dependency>
  253. <dependency>
  254. <groupId>commons-net</groupId>
  255. <artifactId>commons-net</artifactId>
  256. <version>3.3</version>
  257. </dependency>
  258. <!-- ==================== HTTP Client ==================== -->
  259. <dependency>
  260. <groupId>org.apache.httpcomponents</groupId>
  261. <artifactId>httpclient</artifactId>
  262. <version>4.5.3</version>
  263. </dependency>
  264. <dependency>
  265. <groupId>org.apache.httpcomponents</groupId>
  266. <artifactId>httpcore</artifactId>
  267. <version>4.4.5</version>
  268. </dependency>
  269. <dependency>
  270. <groupId>org.apache.httpcomponents</groupId>
  271. <artifactId>httpmime</artifactId>
  272. <version>4.3.6</version>
  273. </dependency>
  274. <!-- ==================== CAS SSO ==================== -->
  275. <dependency>
  276. <groupId>org.jasig.cas.client</groupId>
  277. <artifactId>cas-client-core</artifactId>
  278. <version>3.2.1</version>
  279. </dependency>
  280. <!-- ==================== Quartz ==================== -->
  281. <dependency>
  282. <groupId>org.quartz-scheduler</groupId>
  283. <artifactId>quartz-all</artifactId>
  284. <version>1.8.5</version>
  285. <scope>system</scope>
  286. <systemPath>${project.basedir}/libs/quartz-all-1.8.5.jar</systemPath>
  287. </dependency>
  288. <!-- ==================== Apache POI ==================== -->
  289. <dependency>
  290. <groupId>org.apache.poi</groupId>
  291. <artifactId>poi</artifactId>
  292. <version>3.15</version>
  293. </dependency>
  294. <dependency>
  295. <groupId>org.apache.poi</groupId>
  296. <artifactId>poi-ooxml</artifactId>
  297. <version>3.15</version>
  298. </dependency>
  299. <dependency>
  300. <groupId>org.apache.poi</groupId>
  301. <artifactId>poi-ooxml-schemas</artifactId>
  302. <version>3.15</version>
  303. </dependency>
  304. <!-- ==================== PDF ==================== -->
  305. <dependency>
  306. <groupId>com.itextpdf</groupId>
  307. <artifactId>itextpdf</artifactId>
  308. <version>5.4.3</version>
  309. </dependency>
  310. <!-- ==================== XML ==================== -->
  311. <dependency>
  312. <groupId>dom4j</groupId>
  313. <artifactId>dom4j</artifactId>
  314. <version>1.6.1</version>
  315. </dependency>
  316. <dependency>
  317. <groupId>com.thoughtworks.xstream</groupId>
  318. <artifactId>xstream</artifactId>
  319. <version>1.4.9</version>
  320. </dependency>
  321. <dependency>
  322. <groupId>jaxen</groupId>
  323. <artifactId>jaxen</artifactId>
  324. <version>1.1.1</version>
  325. </dependency>
  326. <dependency>
  327. <groupId>org.apache.xmlbeans</groupId>
  328. <artifactId>xmlbeans</artifactId>
  329. <version>2.3.0</version>
  330. </dependency>
  331. <!-- ==================== Axis2 WebService ==================== -->
  332. <dependency>
  333. <groupId>org.apache.axis2</groupId>
  334. <artifactId>axis2-kernel</artifactId>
  335. <version>1.6.1</version>
  336. <exclusions>
  337. <exclusion>
  338. <groupId>javax.servlet</groupId>
  339. <artifactId>servlet-api</artifactId>
  340. </exclusion>
  341. </exclusions>
  342. </dependency>
  343. <dependency>
  344. <groupId>org.apache.axis2</groupId>
  345. <artifactId>axis2-adb</artifactId>
  346. <version>1.6.1</version>
  347. </dependency>
  348. <dependency>
  349. <groupId>org.apache.axis2</groupId>
  350. <artifactId>axis2-transport-http</artifactId>
  351. <version>1.6.1</version>
  352. </dependency>
  353. <dependency>
  354. <groupId>org.apache.axis2</groupId>
  355. <artifactId>axis2-transport-local</artifactId>
  356. <version>1.6.1</version>
  357. </dependency>
  358. <dependency>
  359. <groupId>org.apache.axis2</groupId>
  360. <artifactId>axis2-jaxws</artifactId>
  361. <version>1.6.1</version>
  362. </dependency>
  363. <dependency>
  364. <groupId>org.apache.ws.commons.axiom</groupId>
  365. <artifactId>axiom-api</artifactId>
  366. <version>1.2.12</version>
  367. </dependency>
  368. <dependency>
  369. <groupId>org.apache.ws.commons.axiom</groupId>
  370. <artifactId>axiom-dom</artifactId>
  371. <version>1.2.12</version>
  372. </dependency>
  373. <dependency>
  374. <groupId>org.apache.ws.commons.axiom</groupId>
  375. <artifactId>axiom-impl</artifactId>
  376. <version>1.2.12</version>
  377. </dependency>
  378. <dependency>
  379. <groupId>org.apache.neethi</groupId>
  380. <artifactId>neethi</artifactId>
  381. <version>3.0.2</version>
  382. </dependency>
  383. <dependency>
  384. <groupId>wsdl4j</groupId>
  385. <artifactId>wsdl4j</artifactId>
  386. <version>1.6.2</version>
  387. </dependency>
  388. <dependency>
  389. <groupId>cn.sinobest</groupId>
  390. <artifactId>xmlschema</artifactId>
  391. <version>1.4.3</version>
  392. <scope>system</scope>
  393. <systemPath>${project.basedir}/libs/XmlSchema-1.4.3.jar</systemPath>
  394. </dependency>
  395. <!-- ==================== DWR ==================== -->
  396. <dependency>
  397. <groupId>org.directwebremoting</groupId>
  398. <artifactId>dwr</artifactId>
  399. <version>3.0.0-rc3-RELEASE</version>
  400. </dependency>
  401. <!-- ==================== Logging ==================== -->
  402. <dependency>
  403. <groupId>log4j</groupId>
  404. <artifactId>log4j</artifactId>
  405. <version>1.2.16</version>
  406. </dependency>
  407. <dependency>
  408. <groupId>org.slf4j</groupId>
  409. <artifactId>slf4j-api</artifactId>
  410. <version>1.7.25</version>
  411. </dependency>
  412. <dependency>
  413. <groupId>org.slf4j</groupId>
  414. <artifactId>slf4j-log4j12</artifactId>
  415. <version>1.7.25</version>
  416. </dependency>
  417. <!-- ==================== ASM (Struts2 依赖) ==================== -->
  418. <!-- 升级到 9.x 以支持 Java 17 -->
  419. <dependency>
  420. <groupId>org.ow2.asm</groupId>
  421. <artifactId>asm</artifactId>
  422. <version>9.7</version>
  423. </dependency>
  424. <dependency>
  425. <groupId>org.ow2.asm</groupId>
  426. <artifactId>asm-commons</artifactId>
  427. <version>9.7</version>
  428. </dependency>
  429. <dependency>
  430. <groupId>org.ow2.asm</groupId>
  431. <artifactId>asm-tree</artifactId>
  432. <version>9.7</version>
  433. </dependency>
  434. <!-- ==================== 其他 ==================== -->
  435. <dependency>
  436. <groupId>aopalliance</groupId>
  437. <artifactId>aopalliance</artifactId>
  438. <version>1.0</version>
  439. </dependency>
  440. <dependency>
  441. <groupId>org.aspectj</groupId>
  442. <artifactId>aspectjrt</artifactId>
  443. <version>1.7.4</version>
  444. </dependency>
  445. <dependency>
  446. <groupId>org.aspectj</groupId>
  447. <artifactId>aspectjweaver</artifactId>
  448. <version>1.7.4</version>
  449. </dependency>
  450. <dependency>
  451. <groupId>cglib</groupId>
  452. <artifactId>cglib-nodep</artifactId>
  453. <version>3.3.0</version>
  454. </dependency>
  455. <dependency>
  456. <groupId>org.bouncycastle</groupId>
  457. <artifactId>bcprov-jdk15on</artifactId>
  458. <version>1.54</version>
  459. </dependency>
  460. <dependency>
  461. <groupId>org.javassist</groupId>
  462. <artifactId>javassist</artifactId>
  463. <version>3.15.0-GA</version>
  464. </dependency>
  465. <dependency>
  466. <groupId>org.freemarker</groupId>
  467. <artifactId>freemarker</artifactId>
  468. <version>2.3.28</version>
  469. </dependency>
  470. <dependency>
  471. <groupId>ognl</groupId>
  472. <artifactId>ognl</artifactId>
  473. <version>3.0.21</version>
  474. </dependency>
  475. <dependency>
  476. <groupId>org.apache.ant</groupId>
  477. <artifactId>ant</artifactId>
  478. <version>1.7.0</version>
  479. </dependency>
  480. <dependency>
  481. <groupId>cn.sinobest</groupId>
  482. <artifactId>oscache</artifactId>
  483. <version>2.4</version>
  484. <scope>system</scope>
  485. <systemPath>${project.basedir}/libs/oscache-2.4.jar</systemPath>
  486. </dependency>
  487. <dependency>
  488. <groupId>com.google.zxing</groupId>
  489. <artifactId>core</artifactId>
  490. <version>2.2</version>
  491. </dependency>
  492. <dependency>
  493. <groupId>com.google.zxing</groupId>
  494. <artifactId>javase</artifactId>
  495. <version>2.2</version>
  496. </dependency>
  497. <dependency>
  498. <groupId>xalan</groupId>
  499. <artifactId>xalan</artifactId>
  500. <version>2.7.2</version>
  501. </dependency>
  502. <dependency>
  503. <groupId>xalan</groupId>
  504. <artifactId>serializer</artifactId>
  505. <version>2.7.2</version>
  506. </dependency>
  507. <dependency>
  508. <groupId>javax.ws.rs</groupId>
  509. <artifactId>jsr311-api</artifactId>
  510. <version>1.0</version>
  511. </dependency>
  512. <dependency>
  513. <groupId>org.apache.geronimo.specs</groupId>
  514. <artifactId>geronimo-jta_1.1_spec</artifactId>
  515. <version>1.1.1</version>
  516. </dependency>
  517. <dependency>
  518. <groupId>org.codehaus.woodstox</groupId>
  519. <artifactId>woodstox-core-asl</artifactId>
  520. <version>4.0.8</version>
  521. </dependency>
  522. <dependency>
  523. <groupId>org.codehaus.woodstox</groupId>
  524. <artifactId>stax2-api</artifactId>
  525. <version>3.0.2</version>
  526. </dependency>
  527. <dependency>
  528. <groupId>com.github.virtuald</groupId>
  529. <artifactId>curvesapi</artifactId>
  530. <version>1.04</version>
  531. </dependency>
  532. <!-- ==================== 本地 JAR(libs/ 目录)==================== -->
  533. <dependency>
  534. <groupId>cn.sinobest</groupId>
  535. <artifactId>sinobestfwcore</artifactId>
  536. <version>0.0.1-SNAPSHOT</version>
  537. <scope>system</scope>
  538. <systemPath>${project.basedir}/libs/sinobestfwcore-h5.jar</systemPath>
  539. </dependency>
  540. <dependency>
  541. <groupId>cn.sinobest</groupId>
  542. <artifactId>sinobestfwhis</artifactId>
  543. <version>0.0.1-SNAPSHOT</version>
  544. <scope>system</scope>
  545. <systemPath>${project.basedir}/libs/sinobestfwhis-0.0.1-SNAPSHOT.jar</systemPath>
  546. </dependency>
  547. <dependency>
  548. <groupId>cn.sinobest</groupId>
  549. <artifactId>sinobestfwsys</artifactId>
  550. <version>0.0.1-SNAPSHOT</version>
  551. <scope>system</scope>
  552. <systemPath>${project.basedir}/libs/sinobestfwsys-0.0.1-SNAPSHOT.jar</systemPath>
  553. </dependency>
  554. <dependency>
  555. <groupId>cn.sinobest</groupId>
  556. <artifactId>sinobestwebservice</artifactId>
  557. <version>0.0.1-SNAPSHOT</version>
  558. <scope>system</scope>
  559. <systemPath>${project.basedir}/libs/sinobestwebservice-0.0.1-20150227.074304-1.jar</systemPath>
  560. </dependency>
  561. <dependency>
  562. <groupId>cn.sinobest</groupId>
  563. <artifactId>mybatis-custom</artifactId>
  564. <version>3.0.2</version>
  565. <scope>system</scope>
  566. <systemPath>${project.basedir}/libs/mybatis-3.0.2.CUS.jar</systemPath>
  567. </dependency>
  568. <dependency>
  569. <groupId>cn.sinobest</groupId>
  570. <artifactId>spring-orm-ibatis3</artifactId>
  571. <version>0.0.1</version>
  572. <scope>system</scope>
  573. <systemPath>${project.basedir}/libs/spring-orm-ibatis3-0.0.1.jar</systemPath>
  574. </dependency>
  575. <dependency>
  576. <groupId>cn.sinobest</groupId>
  577. <artifactId>spring-remote-annotation</artifactId>
  578. <version>0.0.1</version>
  579. <scope>system</scope>
  580. <systemPath>${project.basedir}/libs/spring-remote-annotation-0.0.1.RELEASE.jar</systemPath>
  581. </dependency>
  582. <dependency>
  583. <groupId>cn.sinobest</groupId>
  584. <artifactId>iwfp-sino-core</artifactId>
  585. <version>0.1.3</version>
  586. <scope>system</scope>
  587. <systemPath>${project.basedir}/libs/iWFP-SINO-CORE-0.1.3.jar</systemPath>
  588. </dependency>
  589. <dependency>
  590. <groupId>cn.sinobest</groupId>
  591. <artifactId>filters</artifactId>
  592. <version>0.0.1-SNAPSHOT</version>
  593. <scope>system</scope>
  594. <systemPath>${project.basedir}/libs/filters-0.0.1-SNAPSHOT.jar</systemPath>
  595. </dependency>
  596. <dependency>
  597. <groupId>cn.sinobest</groupId>
  598. <artifactId>filters-release</artifactId>
  599. <version>0.0.1</version>
  600. <scope>system</scope>
  601. <systemPath>${project.basedir}/libs/filters-0.0.1.jar</systemPath>
  602. </dependency>
  603. <dependency>
  604. <groupId>cn.sinobest</groupId>
  605. <artifactId>report4</artifactId>
  606. <version>0.1</version>
  607. <scope>system</scope>
  608. <systemPath>${project.basedir}/libs/report4-0.1.jar</systemPath>
  609. </dependency>
  610. <dependency>
  611. <groupId>cn.sinobest</groupId>
  612. <artifactId>barcode</artifactId>
  613. <version>0.1</version>
  614. <scope>system</scope>
  615. <systemPath>${project.basedir}/libs/barcode-0.1.jar</systemPath>
  616. </dependency>
  617. <dependency>
  618. <groupId>cn.sinobest</groupId>
  619. <artifactId>datetimeformat</artifactId>
  620. <version>0.1</version>
  621. <scope>system</scope>
  622. <systemPath>${project.basedir}/libs/datetimeformat-0.1.jar</systemPath>
  623. </dependency>
  624. <dependency>
  625. <groupId>cn.sinobest</groupId>
  626. <artifactId>demo_helper</artifactId>
  627. <version>0.1</version>
  628. <scope>system</scope>
  629. <systemPath>${project.basedir}/libs/demo_helper-0.1.jar</systemPath>
  630. </dependency>
  631. <dependency>
  632. <groupId>cn.sinobest</groupId>
  633. <artifactId>itext2_rq</artifactId>
  634. <version>0.1</version>
  635. <scope>system</scope>
  636. <systemPath>${project.basedir}/libs/itext2_rq-0.1.jar</systemPath>
  637. </dependency>
  638. <dependency>
  639. <groupId>cn.sinobest</groupId>
  640. <artifactId>itextasian</artifactId>
  641. <version>0.1</version>
  642. <scope>system</scope>
  643. <systemPath>${project.basedir}/libs/itextasian-0.1.jar</systemPath>
  644. </dependency>
  645. <dependency>
  646. <groupId>cn.sinobest</groupId>
  647. <artifactId>jai_codec</artifactId>
  648. <version>0.1</version>
  649. <scope>system</scope>
  650. <systemPath>${project.basedir}/libs/jai_codec-0.1.jar</systemPath>
  651. </dependency>
  652. <dependency>
  653. <groupId>cn.sinobest</groupId>
  654. <artifactId>jai_core</artifactId>
  655. <version>0.1</version>
  656. <scope>system</scope>
  657. <systemPath>${project.basedir}/libs/jai_core-0.1.jar</systemPath>
  658. </dependency>
  659. <dependency>
  660. <groupId>cn.sinobest</groupId>
  661. <artifactId>jdom</artifactId>
  662. <version>0.1</version>
  663. <scope>system</scope>
  664. <systemPath>${project.basedir}/libs/jdom-0.1.jar</systemPath>
  665. </dependency>
  666. <dependency>
  667. <groupId>cn.sinobest</groupId>
  668. <artifactId>parser</artifactId>
  669. <version>0.1</version>
  670. <scope>system</scope>
  671. <systemPath>${project.basedir}/libs/parser-0.1.jar</systemPath>
  672. </dependency>
  673. <dependency>
  674. <groupId>cn.sinobest</groupId>
  675. <artifactId>poi2</artifactId>
  676. <version>0.1</version>
  677. <scope>system</scope>
  678. <systemPath>${project.basedir}/libs/poi2-0.1.jar</systemPath>
  679. </dependency>
  680. <dependency>
  681. <groupId>cn.sinobest</groupId>
  682. <artifactId>webutil</artifactId>
  683. <version>0.1</version>
  684. <scope>system</scope>
  685. <systemPath>${project.basedir}/libs/webutil-0.1.jar</systemPath>
  686. </dependency>
  687. <dependency>
  688. <groupId>cn.sinobest</groupId>
  689. <artifactId>statistics</artifactId>
  690. <version>1.0.1</version>
  691. <scope>system</scope>
  692. <systemPath>${project.basedir}/libs/statistics-1.0.1.jar</systemPath>
  693. </dependency>
  694. <dependency>
  695. <groupId>com.oracle.database.nls</groupId>
  696. <artifactId>orai18n</artifactId>
  697. <version>19.3.0.0</version>
  698. <scope>system</scope>
  699. <systemPath>${project.basedir}/libs/orai18n-19.3.0.0.jar</systemPath>
  700. </dependency>
  701. <dependency>
  702. <groupId>cn.sinobest</groupId>
  703. <artifactId>mybatis-oscache</artifactId>
  704. <version>1.0.0-RC1</version>
  705. <scope>system</scope>
  706. <systemPath>${project.basedir}/libs/mybatis-oscache-1.0.0-RC1.jar</systemPath>
  707. </dependency>
  708. <!-- ==================== Test ==================== -->
  709. <dependency>
  710. <groupId>junit</groupId>
  711. <artifactId>junit</artifactId>
  712. <version>4.5</version>
  713. <scope>test</scope>
  714. </dependency>
  715. </dependencies>
  716. <build>
  717. <resources>
  718. <!-- 包含 src/main/java 下的 XML 文件(MyBatis Mapper) -->
  719. <resource>
  720. <directory>src/main/java</directory>
  721. <includes>
  722. <include>**/*.xml</include>
  723. </includes>
  724. </resource>
  725. <!-- 标准 resources 目录 -->
  726. <resource>
  727. <directory>src/main/resources</directory>
  728. </resource>
  729. </resources>
  730. <plugins>
  731. <plugin>
  732. <groupId>org.springframework.boot</groupId>
  733. <artifactId>spring-boot-maven-plugin</artifactId>
  734. <configuration>
  735. <includeSystemScope>true</includeSystemScope>
  736. <jvmArguments>
  737. --add-exports=java.base/sun.nio.ch=ALL-UNNAMED
  738. --add-opens=java.base/java.lang=ALL-UNNAMED
  739. --add-opens=java.base/java.lang.invoke=ALL-UNNAMED
  740. --add-opens=java.base/java.lang.reflect=ALL-UNNAMED
  741. --add-opens=java.base/java.util=ALL-UNNAMED
  742. --add-opens=java.base/java.io=ALL-UNNAMED
  743. --add-opens=java.base/java.net=ALL-UNNAMED
  744. --add-opens=java.base/java.security=ALL-UNNAMED
  745. --add-opens=java.base/java.math=ALL-UNNAMED
  746. --add-opens=java.base/java.text=ALL-UNNAMED
  747. --add-opens=java.base/java.nio.file=ALL-UNNAMED
  748. --add-opens=java.base/sun.nio.ch=ALL-UNNAMED
  749. --add-opens=java.base/sun.security.ssl=ALL-UNNAMED
  750. </jvmArguments>
  751. </configuration>
  752. </plugin>
  753. <plugin>
  754. <groupId>org.apache.maven.plugins</groupId>
  755. <artifactId>maven-compiler-plugin</artifactId>
  756. <configuration>
  757. <source>17</source>
  758. <target>17</target>
  759. <encoding>UTF-8</encoding>
  760. <compilerArgs>
  761. <arg>--add-exports=java.base/sun.nio.ch=ALL-UNNAMED</arg>
  762. <arg>--add-opens=java.base/java.lang=ALL-UNNAMED</arg>
  763. <arg>--add-opens=java.base/java.lang.reflect=ALL-UNNAMED</arg>
  764. <arg>--add-opens=java.base/java.util=ALL-UNNAMED</arg>
  765. </compilerArgs>
  766. </configuration>
  767. </plugin>
  768. <plugin>
  769. <groupId>org.apache.maven.plugins</groupId>
  770. <artifactId>maven-war-plugin</artifactId>
  771. <configuration>
  772. <failOnMissingWebXml>false</failOnMissingWebXml>
  773. <webResources>
  774. <resource>
  775. <directory>${project.basedir}/libs</directory>
  776. <targetPath>WEB-INF/lib</targetPath>
  777. <includes>
  778. <!-- 只复制未声明为 Maven 依赖的 JAR -->
  779. <!-- 其余 system-scope JAR 由 spring-boot-maven-plugin 处理 -->
  780. <include>javax.annotation.jar</include>
  781. <include>javax.ejb.jar</include>
  782. <include>javax.jms.jar</include>
  783. <include>javax.resource.jar</include>
  784. <include>javax.servlet.jar</include>
  785. <include>javax.servlet.jsp.jar</include>
  786. </includes>
  787. </resource>
  788. </webResources>
  789. </configuration>
  790. </plugin>
  791. </plugins>
  792. </build>
  793. </project>