pom.xml 31 KB

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