| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
- http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.5.14</version>
- <relativePath/>
- </parent>
- <groupId>cn.sinobest</groupId>
- <artifactId>yctb</artifactId>
- <version>1.0.0</version>
- <packaging>war</packaging>
- <name>yctb</name>
- <description>湛江人社一窗通办系统</description>
- <properties>
- <java.version>17</java.version>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <!-- 锁定关键版本 -->
- <hibernate.version>5.6.15.Final</hibernate.version>
- <struts2.version>2.3.37</struts2.version>
- </properties>
- <dependencies>
- <!-- ==================== Spring Boot Starters ==================== -->
- <!-- Web Starter(排除 Logback,项目使用 Log4j 1.x)-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- <exclusions>
- <exclusion>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-logging</artifactId>
- </exclusion>
- <!-- 排除内嵌的 Jackson 2.x,项目使用 Jackson 1.x -->
- <exclusion>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- </exclusion>
- <exclusion>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-core</artifactId>
- </exclusion>
- <exclusion>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-annotations</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- Log4j 1.x 支持 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-log4j</artifactId>
- <version>1.3.8.RELEASE</version>
- </dependency>
- <!-- JDBC 支持(提供 JdbcTemplate、DaoSupport 等)-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-jdbc</artifactId>
- <exclusions>
- <exclusion>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-logging</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- Spring ORM(提供 hibernate4.LocalSessionFactoryBean 等)-->
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-orm</artifactId>
- </dependency>
- <!-- Spring Context Support(提供 Quartz SchedulerFactoryBean 等)-->
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-context-support</artifactId>
- </dependency>
- <!-- 内嵌 Tomcat -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-tomcat</artifactId>
- </dependency>
- <!-- JSP 支持 -->
- <dependency>
- <groupId>org.apache.tomcat.embed</groupId>
- <artifactId>tomcat-embed-jasper</artifactId>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <version>4.0.1</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>javax.servlet.jsp-api</artifactId>
- <version>2.3.3</version>
- </dependency>
- <dependency>
- <groupId>org.glassfish</groupId>
- <artifactId>javax.el</artifactId>
- <version>3.0.0</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- </dependency>
- <!-- ==================== Struts 2 ==================== -->
- <dependency>
- <groupId>org.apache.struts</groupId>
- <artifactId>struts2-core</artifactId>
- <version>${struts2.version}</version>
- <exclusions>
- <exclusion>
- <groupId>javassist</groupId>
- <artifactId>javassist</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.apache.struts</groupId>
- <artifactId>struts2-convention-plugin</artifactId>
- <version>${struts2.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.struts</groupId>
- <artifactId>struts2-spring-plugin</artifactId>
- <version>${struts2.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.struts</groupId>
- <artifactId>struts2-config-browser-plugin</artifactId>
- <version>${struts2.version}</version>
- </dependency>
- <!-- ==================== Hibernate 5 ==================== -->
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-core</artifactId>
- </dependency>
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-ehcache</artifactId>
- </dependency>
- <!-- ==================== 数据库 ==================== -->
- <!-- 达梦数据库驱动 -->
- <dependency>
- <groupId>com.dameng</groupId>
- <artifactId>DmJdbcDriver18</artifactId>
- <version>8.1.1.193</version>
- </dependency>
- <!-- Oracle数据库驱动(保留用于兼容)-->
- <dependency>
- <groupId>com.oracle.database.jdbc</groupId>
- <artifactId>ojdbc8</artifactId>
- <version>19.3.0.0</version>
- </dependency>
- <dependency>
- <groupId>commons-dbcp</groupId>
- <artifactId>commons-dbcp</artifactId>
- <version>1.4</version>
- </dependency>
- <dependency>
- <groupId>commons-pool</groupId>
- <artifactId>commons-pool</artifactId>
- <version>1.5.4</version>
- </dependency>
- <dependency>
- <groupId>c3p0</groupId>
- <artifactId>c3p0</artifactId>
- <version>0.9.1.2</version>
- </dependency>
- <!-- ==================== JSON ==================== -->
- <dependency>
- <groupId>org.codehaus.jackson</groupId>
- <artifactId>jackson-mapper-asl</artifactId>
- <version>1.7.1</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>1.2.22</version>
- </dependency>
- <dependency>
- <groupId>com.google.code.gson</groupId>
- <artifactId>gson</artifactId>
- <version>2.9.0</version>
- </dependency>
- <dependency>
- <groupId>net.sf.json-lib</groupId>
- <artifactId>json-lib</artifactId>
- <version>2.4</version>
- <classifier>jdk15</classifier>
- </dependency>
- <dependency>
- <groupId>net.sf.ezmorph</groupId>
- <artifactId>ezmorph</artifactId>
- <version>1.0.6</version>
- </dependency>
- <!-- ==================== Apache Commons ==================== -->
- <dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
- <version>2.5</version>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- <version>3.1</version>
- </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>1.3.2</version>
- </dependency>
- <dependency>
- <groupId>commons-beanutils</groupId>
- <artifactId>commons-beanutils</artifactId>
- <version>1.9.3</version>
- </dependency>
- <dependency>
- <groupId>commons-codec</groupId>
- <artifactId>commons-codec</artifactId>
- <version>1.10</version>
- </dependency>
- <dependency>
- <groupId>commons-collections</groupId>
- <artifactId>commons-collections</artifactId>
- <version>3.2.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-collections4</artifactId>
- <version>4.1</version>
- </dependency>
- <dependency>
- <groupId>commons-fileupload</groupId>
- <artifactId>commons-fileupload</artifactId>
- <version>1.3.3</version>
- </dependency>
- <dependency>
- <groupId>commons-httpclient</groupId>
- <artifactId>commons-httpclient</artifactId>
- <version>3.1</version>
- </dependency>
- <dependency>
- <groupId>commons-logging</groupId>
- <artifactId>commons-logging</artifactId>
- <version>1.1.3</version>
- </dependency>
- <dependency>
- <groupId>commons-net</groupId>
- <artifactId>commons-net</artifactId>
- <version>3.3</version>
- </dependency>
- <!-- ==================== HTTP Client ==================== -->
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <version>4.5.3</version>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpcore</artifactId>
- <version>4.4.5</version>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpmime</artifactId>
- <version>4.3.6</version>
- </dependency>
- <!-- ==================== CAS SSO ==================== -->
- <dependency>
- <groupId>org.jasig.cas.client</groupId>
- <artifactId>cas-client-core</artifactId>
- <version>3.2.1</version>
- </dependency>
- <!-- ==================== Quartz ==================== -->
- <dependency>
- <groupId>org.quartz-scheduler</groupId>
- <artifactId>quartz-all</artifactId>
- <version>1.8.5</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/quartz-all-1.8.5.jar</systemPath>
- </dependency>
- <!-- ==================== Apache POI ==================== -->
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi</artifactId>
- <version>3.15</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-ooxml</artifactId>
- <version>3.15</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-ooxml-schemas</artifactId>
- <version>3.15</version>
- </dependency>
- <!-- ==================== PDF ==================== -->
- <dependency>
- <groupId>com.itextpdf</groupId>
- <artifactId>itextpdf</artifactId>
- <version>5.4.3</version>
- </dependency>
- <!-- ==================== XML ==================== -->
- <dependency>
- <groupId>dom4j</groupId>
- <artifactId>dom4j</artifactId>
- <version>1.6.1</version>
- </dependency>
- <dependency>
- <groupId>com.thoughtworks.xstream</groupId>
- <artifactId>xstream</artifactId>
- <version>1.4.9</version>
- </dependency>
- <dependency>
- <groupId>jaxen</groupId>
- <artifactId>jaxen</artifactId>
- <version>1.1.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.xmlbeans</groupId>
- <artifactId>xmlbeans</artifactId>
- <version>2.3.0</version>
- </dependency>
- <!-- ==================== Axis2 WebService ==================== -->
- <dependency>
- <groupId>org.apache.axis2</groupId>
- <artifactId>axis2-kernel</artifactId>
- <version>1.6.1</version>
- <exclusions>
- <exclusion>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.apache.axis2</groupId>
- <artifactId>axis2-adb</artifactId>
- <version>1.6.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.axis2</groupId>
- <artifactId>axis2-transport-http</artifactId>
- <version>1.6.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.axis2</groupId>
- <artifactId>axis2-transport-local</artifactId>
- <version>1.6.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.axis2</groupId>
- <artifactId>axis2-jaxws</artifactId>
- <version>1.6.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.ws.commons.axiom</groupId>
- <artifactId>axiom-api</artifactId>
- <version>1.2.12</version>
- </dependency>
- <dependency>
- <groupId>org.apache.ws.commons.axiom</groupId>
- <artifactId>axiom-dom</artifactId>
- <version>1.2.12</version>
- </dependency>
- <dependency>
- <groupId>org.apache.ws.commons.axiom</groupId>
- <artifactId>axiom-impl</artifactId>
- <version>1.2.12</version>
- </dependency>
- <dependency>
- <groupId>org.apache.neethi</groupId>
- <artifactId>neethi</artifactId>
- <version>3.0.2</version>
- </dependency>
- <dependency>
- <groupId>wsdl4j</groupId>
- <artifactId>wsdl4j</artifactId>
- <version>1.6.2</version>
- </dependency>
- <dependency>
- <groupId>cn.sinobest</groupId>
- <artifactId>xmlschema</artifactId>
- <version>1.4.3</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/XmlSchema-1.4.3.jar</systemPath>
- </dependency>
- <!-- ==================== DWR ==================== -->
- <dependency>
- <groupId>org.directwebremoting</groupId>
- <artifactId>dwr</artifactId>
- <version>3.0.0-rc3-RELEASE</version>
- </dependency>
- <!-- ==================== Logging ==================== -->
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- <version>1.2.16</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <version>1.7.25</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-log4j12</artifactId>
- <version>1.7.25</version>
- </dependency>
- <!-- ==================== ASM (Struts2 依赖) ==================== -->
- <!-- 升级到 9.x 以支持 Java 17 -->
- <dependency>
- <groupId>org.ow2.asm</groupId>
- <artifactId>asm</artifactId>
- <version>9.7</version>
- </dependency>
- <dependency>
- <groupId>org.ow2.asm</groupId>
- <artifactId>asm-commons</artifactId>
- <version>9.7</version>
- </dependency>
- <dependency>
- <groupId>org.ow2.asm</groupId>
- <artifactId>asm-tree</artifactId>
- <version>9.7</version>
- </dependency>
- <!-- ==================== 其他 ==================== -->
- <dependency>
- <groupId>aopalliance</groupId>
- <artifactId>aopalliance</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>org.aspectj</groupId>
- <artifactId>aspectjrt</artifactId>
- <version>1.7.4</version>
- </dependency>
- <dependency>
- <groupId>org.aspectj</groupId>
- <artifactId>aspectjweaver</artifactId>
- <version>1.7.4</version>
- </dependency>
- <dependency>
- <groupId>cglib</groupId>
- <artifactId>cglib-nodep</artifactId>
- <version>3.3.0</version>
- </dependency>
- <dependency>
- <groupId>org.bouncycastle</groupId>
- <artifactId>bcprov-jdk15on</artifactId>
- <version>1.54</version>
- </dependency>
- <dependency>
- <groupId>org.javassist</groupId>
- <artifactId>javassist</artifactId>
- <version>3.15.0-GA</version>
- </dependency>
- <dependency>
- <groupId>org.freemarker</groupId>
- <artifactId>freemarker</artifactId>
- <version>2.3.28</version>
- </dependency>
- <dependency>
- <groupId>ognl</groupId>
- <artifactId>ognl</artifactId>
- <version>3.0.21</version>
- </dependency>
- <dependency>
- <groupId>org.apache.ant</groupId>
- <artifactId>ant</artifactId>
- <version>1.7.0</version>
- </dependency>
- <dependency>
- <groupId>cn.sinobest</groupId>
- <artifactId>oscache</artifactId>
- <version>2.4</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/oscache-2.4.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.google.zxing</groupId>
- <artifactId>core</artifactId>
- <version>2.2</version>
- </dependency>
- <dependency>
- <groupId>com.google.zxing</groupId>
- <artifactId>javase</artifactId>
- <version>2.2</version>
- </dependency>
- <dependency>
- <groupId>xalan</groupId>
- <artifactId>xalan</artifactId>
- <version>2.7.2</version>
- </dependency>
- <dependency>
- <groupId>xalan</groupId>
- <artifactId>serializer</artifactId>
- <version>2.7.2</version>
- </dependency>
- <dependency>
- <groupId>javax.ws.rs</groupId>
- <artifactId>jsr311-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>org.apache.geronimo.specs</groupId>
- <artifactId>geronimo-jta_1.1_spec</artifactId>
- <version>1.1.1</version>
- </dependency>
- <dependency>
- <groupId>org.codehaus.woodstox</groupId>
- <artifactId>woodstox-core-asl</artifactId>
- <version>4.0.8</version>
- </dependency>
- <dependency>
- <groupId>org.codehaus.woodstox</groupId>
- <artifactId>stax2-api</artifactId>
- <version>3.0.2</version>
- </dependency>
- <dependency>
- <groupId>com.github.virtuald</groupId>
- <artifactId>curvesapi</artifactId>
- <version>1.04</version>
- </dependency>
- <!-- ==================== 本地 JAR(libs/ 目录)==================== -->
- <dependency>
- <groupId>cn.sinobest</groupId>
- <artifactId>sinobestfwcore</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/sinobestfwcore-h5.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>cn.sinobest</groupId>
- <artifactId>sinobestfwhis</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/sinobestfwhis-0.0.1-SNAPSHOT.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>cn.sinobest</groupId>
- <artifactId>sinobestfwsys</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/sinobestfwsys-0.0.1-SNAPSHOT.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>cn.sinobest</groupId>
- <artifactId>sinobestwebservice</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/sinobestwebservice-0.0.1-20150227.074304-1.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>cn.sinobest</groupId>
- <artifactId>mybatis-custom</artifactId>
- <version>3.0.2</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/mybatis-3.0.2.CUS.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>cn.sinobest</groupId>
- <artifactId>spring-orm-ibatis3</artifactId>
- <version>0.0.1</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/spring-orm-ibatis3-0.0.1.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>cn.sinobest</groupId>
- <artifactId>spring-remote-annotation</artifactId>
- <version>0.0.1</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/spring-remote-annotation-0.0.1.RELEASE.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>cn.sinobest</groupId>
- <artifactId>iwfp-sino-core</artifactId>
- <version>0.1.3</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/iWFP-SINO-CORE-0.1.3.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>cn.sinobest</groupId>
- <artifactId>filters</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/filters-0.0.1-SNAPSHOT.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>cn.sinobest</groupId>
- <artifactId>filters-release</artifactId>
- <version>0.0.1</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/filters-0.0.1.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>cn.sinobest</groupId>
- <artifactId>report4</artifactId>
- <version>0.1</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/report4-0.1.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>cn.sinobest</groupId>
- <artifactId>barcode</artifactId>
- <version>0.1</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/barcode-0.1.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>cn.sinobest</groupId>
- <artifactId>datetimeformat</artifactId>
- <version>0.1</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/datetimeformat-0.1.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>cn.sinobest</groupId>
- <artifactId>demo_helper</artifactId>
- <version>0.1</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/demo_helper-0.1.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>cn.sinobest</groupId>
- <artifactId>itext2_rq</artifactId>
- <version>0.1</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/itext2_rq-0.1.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>cn.sinobest</groupId>
- <artifactId>itextasian</artifactId>
- <version>0.1</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/itextasian-0.1.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>cn.sinobest</groupId>
- <artifactId>jai_codec</artifactId>
- <version>0.1</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/jai_codec-0.1.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>cn.sinobest</groupId>
- <artifactId>jai_core</artifactId>
- <version>0.1</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/jai_core-0.1.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>cn.sinobest</groupId>
- <artifactId>jdom</artifactId>
- <version>0.1</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/jdom-0.1.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>cn.sinobest</groupId>
- <artifactId>parser</artifactId>
- <version>0.1</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/parser-0.1.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>cn.sinobest</groupId>
- <artifactId>poi2</artifactId>
- <version>0.1</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/poi2-0.1.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>cn.sinobest</groupId>
- <artifactId>webutil</artifactId>
- <version>0.1</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/webutil-0.1.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>cn.sinobest</groupId>
- <artifactId>statistics</artifactId>
- <version>1.0.1</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/statistics-1.0.1.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.oracle.database.nls</groupId>
- <artifactId>orai18n</artifactId>
- <version>19.3.0.0</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/orai18n-19.3.0.0.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>cn.sinobest</groupId>
- <artifactId>mybatis-oscache</artifactId>
- <version>1.0.0-RC1</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/libs/mybatis-oscache-1.0.0-RC1.jar</systemPath>
- </dependency>
- <!-- ==================== Test ==================== -->
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.5</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <build>
- <resources>
- <!-- 包含 src/main/java 下的 XML 文件(MyBatis Mapper) -->
- <resource>
- <directory>src/main/java</directory>
- <includes>
- <include>**/*.xml</include>
- </includes>
- </resource>
- <!-- 标准 resources 目录 -->
- <resource>
- <directory>src/main/resources</directory>
- </resource>
- </resources>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <includeSystemScope>true</includeSystemScope>
- <jvmArguments>
- --add-exports=java.base/sun.nio.ch=ALL-UNNAMED
- --add-opens=java.base/java.lang=ALL-UNNAMED
- --add-opens=java.base/java.lang.invoke=ALL-UNNAMED
- --add-opens=java.base/java.lang.reflect=ALL-UNNAMED
- --add-opens=java.base/java.util=ALL-UNNAMED
- --add-opens=java.base/java.io=ALL-UNNAMED
- --add-opens=java.base/java.net=ALL-UNNAMED
- --add-opens=java.base/java.security=ALL-UNNAMED
- --add-opens=java.base/java.math=ALL-UNNAMED
- --add-opens=java.base/java.text=ALL-UNNAMED
- --add-opens=java.base/java.nio.file=ALL-UNNAMED
- --add-opens=java.base/sun.nio.ch=ALL-UNNAMED
- --add-opens=java.base/sun.security.ssl=ALL-UNNAMED
- </jvmArguments>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>17</source>
- <target>17</target>
- <encoding>UTF-8</encoding>
- <compilerArgs>
- <arg>--add-exports=java.base/sun.nio.ch=ALL-UNNAMED</arg>
- <arg>--add-opens=java.base/java.lang=ALL-UNNAMED</arg>
- <arg>--add-opens=java.base/java.lang.reflect=ALL-UNNAMED</arg>
- <arg>--add-opens=java.base/java.util=ALL-UNNAMED</arg>
- </compilerArgs>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-war-plugin</artifactId>
- <configuration>
- <failOnMissingWebXml>false</failOnMissingWebXml>
- <webResources>
- <resource>
- <directory>${project.basedir}/libs</directory>
- <targetPath>WEB-INF/lib</targetPath>
- <includes>
- <!-- 只复制未声明为 Maven 依赖的 JAR -->
- <!-- 其余 system-scope JAR 由 spring-boot-maven-plugin 处理 -->
- <include>javax.annotation.jar</include>
- <include>javax.ejb.jar</include>
- <include>javax.jms.jar</include>
- <include>javax.resource.jar</include>
- <include>javax.servlet.jar</include>
- <include>javax.servlet.jsp.jar</include>
- </includes>
- </resource>
- </webResources>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|