|
|
@@ -0,0 +1,492 @@
|
|
|
+<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/maven-v4_0_0.xsd">
|
|
|
+
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
+ <groupId>adm</groupId>
|
|
|
+ <artifactId>adm</artifactId>
|
|
|
+ <packaging>war</packaging>
|
|
|
+ <version>0.0.1-SNAPSHOT</version>
|
|
|
+ <name>mintestweb Maven Webapp</name>
|
|
|
+ <url>http://maven.apache.org</url>
|
|
|
+
|
|
|
+ <properties>
|
|
|
+ <!-- Common libs -->
|
|
|
+ <spring.version>3.2.17.RELEASE</spring.version>
|
|
|
+ <integration.version>2.1.0.RELEASE</integration.version>
|
|
|
+ <servlet.version>2.5</servlet.version>
|
|
|
+ <cglib.version>2.2</cglib.version>
|
|
|
+ <ehcache.version>2.8.1</ehcache.version>
|
|
|
+ <commons-fileupload.version>1.3.1</commons-fileupload.version>
|
|
|
+ <json.version>20160810</json.version>
|
|
|
+ <json-lib.version>2.4</json-lib.version>
|
|
|
+ <commons-httpclient.version>3.1</commons-httpclient.version>
|
|
|
+ <!-- about db config -->
|
|
|
+ <ojdbc.version>11.2.0.4</ojdbc.version>
|
|
|
+ <mysql_driver.version>5.1.42</mysql_driver.version>
|
|
|
+ <mybatis.version>3.4.4</mybatis.version>
|
|
|
+ <dbcp.version>2.1.1</dbcp.version>
|
|
|
+ <druid.version>1.0.18</druid.version>
|
|
|
+ <mybatis_spring.version>1.3.0</mybatis_spring.version>
|
|
|
+ <!-- Log libs -->
|
|
|
+ <slf4j-log4j12.version>1.7.21</slf4j-log4j12.version>
|
|
|
+ <!-- Test libs -->
|
|
|
+ <junit.version>4.10</junit.version>
|
|
|
+ <cxf.version>2.7.0</cxf.version>
|
|
|
+ <!-- for maven compiler plugin -->
|
|
|
+ <maven_compiler_plugin.version>2.7</maven_compiler_plugin.version>
|
|
|
+ <java_source.version>1.8</java_source.version>
|
|
|
+ <java_target.version>1.8</java_target.version>
|
|
|
+ <file_encoding>UTF-8</file_encoding>
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
+ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
+ </properties>
|
|
|
+
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>junit</groupId>
|
|
|
+ <artifactId>junit</artifactId>
|
|
|
+ <version>${junit.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ <artifactId>slf4j-log4j12</artifactId>
|
|
|
+ <version>${slf4j-log4j12.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.integration</groupId>
|
|
|
+ <artifactId>spring-integration-amqp</artifactId>
|
|
|
+ <version>${integration.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.integration</groupId>
|
|
|
+ <artifactId>spring-integration-core</artifactId>
|
|
|
+ <version>${integration.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.integration</groupId>
|
|
|
+ <artifactId>spring-integration-event</artifactId>
|
|
|
+ <version>${integration.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.integration</groupId>
|
|
|
+ <artifactId>spring-integration-file</artifactId>
|
|
|
+ <version>${integration.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.integration</groupId>
|
|
|
+ <artifactId>spring-integration-ftp</artifactId>
|
|
|
+ <version>${integration.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.integration</groupId>
|
|
|
+ <artifactId>spring-integration-groovy</artifactId>
|
|
|
+ <version>${integration.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.integration</groupId>
|
|
|
+ <artifactId>spring-integration-http</artifactId>
|
|
|
+ <version>${integration.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.integration</groupId>
|
|
|
+ <artifactId>spring-integration-ip</artifactId>
|
|
|
+ <version>${integration.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.integration</groupId>
|
|
|
+ <artifactId>spring-integration-jdbc</artifactId>
|
|
|
+ <version>${integration.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.integration</groupId>
|
|
|
+ <artifactId>spring-integration-jms</artifactId>
|
|
|
+ <version>${integration.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.integration</groupId>
|
|
|
+ <artifactId>spring-integration-jmx</artifactId>
|
|
|
+ <version>${integration.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.integration</groupId>
|
|
|
+ <artifactId>spring-integration-mail</artifactId>
|
|
|
+ <version>${integration.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.integration</groupId>
|
|
|
+ <artifactId>spring-integration-mongodb</artifactId>
|
|
|
+ <version>${integration.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.integration</groupId>
|
|
|
+ <artifactId>spring-integration-redis</artifactId>
|
|
|
+ <version>${integration.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.integration</groupId>
|
|
|
+ <artifactId>spring-integration-rmi</artifactId>
|
|
|
+ <version>${integration.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.integration</groupId>
|
|
|
+ <artifactId>spring-integration-scripting</artifactId>
|
|
|
+ <version>${integration.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.integration</groupId>
|
|
|
+ <artifactId>spring-integration-security</artifactId>
|
|
|
+ <version>${integration.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.integration</groupId>
|
|
|
+ <artifactId>spring-integration-sftp</artifactId>
|
|
|
+ <version>${integration.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.integration</groupId>
|
|
|
+ <artifactId>spring-integration-stream</artifactId>
|
|
|
+ <version>${integration.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.integration</groupId>
|
|
|
+ <artifactId>spring-integration-test</artifactId>
|
|
|
+ <version>${integration.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.integration</groupId>
|
|
|
+ <artifactId>spring-integration-ws</artifactId>
|
|
|
+ <version>${integration.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.integration</groupId>
|
|
|
+ <artifactId>spring-integration-xml</artifactId>
|
|
|
+ <version>${integration.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.integration</groupId>
|
|
|
+ <artifactId>spring-integration-xmpp</artifactId>
|
|
|
+ <version>${integration.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.mybatis</groupId>
|
|
|
+ <artifactId>mybatis</artifactId>
|
|
|
+ <version>${mybatis.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-dbcp</groupId>
|
|
|
+ <artifactId>commons-dbcp</artifactId>
|
|
|
+ <version>1.4</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>druid</artifactId>
|
|
|
+ <version>${druid.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.mybatis</groupId>
|
|
|
+ <artifactId>mybatis-spring</artifactId>
|
|
|
+ <version>${mybatis_spring.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>mysql</groupId>
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
+ <version>${mysql_driver.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-fileupload</groupId>
|
|
|
+ <artifactId>commons-fileupload</artifactId>
|
|
|
+ <version>${commons-fileupload.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-beans</artifactId>
|
|
|
+ <version>${spring.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-context</artifactId>
|
|
|
+ <version>${spring.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-aop</artifactId>
|
|
|
+ <version>${spring.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-webmvc</artifactId>
|
|
|
+ <version>${spring.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-oxm</artifactId>
|
|
|
+ <version>${spring.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-web</artifactId>
|
|
|
+ <version>${spring.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-tx</artifactId>
|
|
|
+ <version>${spring.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-context-support</artifactId>
|
|
|
+ <version>${spring.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-jdbc</artifactId>
|
|
|
+ <version>${spring.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-test</artifactId>
|
|
|
+ <version>${spring.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-jms</artifactId>
|
|
|
+ <version>${spring.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-expression</artifactId>
|
|
|
+ <version>${spring.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>javax.servlet</groupId>
|
|
|
+ <artifactId>servlet-api</artifactId>
|
|
|
+ <version>${servlet.version}</version>
|
|
|
+ <scope>provided</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.json</groupId>
|
|
|
+ <artifactId>json</artifactId>
|
|
|
+ <version>${json.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>cglib</groupId>
|
|
|
+ <artifactId>cglib</artifactId>
|
|
|
+ <version>${cglib.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- CXF Dependencies -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.cxf</groupId>
|
|
|
+ <artifactId>cxf-rt-frontend-jaxws</artifactId>
|
|
|
+ <version>${cxf.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.cxf</groupId>
|
|
|
+ <artifactId>cxf-rt-transports-http</artifactId>
|
|
|
+ <version>${cxf.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- End of CXF Dependencies -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-httpclient</groupId>
|
|
|
+ <artifactId>commons-httpclient</artifactId>
|
|
|
+ <version>${commons-httpclient.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>net.sf.ehcache</groupId>
|
|
|
+ <artifactId>ehcache</artifactId>
|
|
|
+ <version>${ehcache.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>net.sf.json-lib</groupId>
|
|
|
+ <artifactId>json-lib</artifactId>
|
|
|
+ <version>${json-lib.version}</version>
|
|
|
+ <classifier>jdk15</classifier>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.httpcomponents</groupId>
|
|
|
+ <artifactId>httpmime</artifactId>
|
|
|
+ <version>4.3.5</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ <artifactId>slf4j-api</artifactId>
|
|
|
+ <version>1.7.13</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ <artifactId>slf4j-log4j12</artifactId>
|
|
|
+ <version>1.7.13</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>mysql</groupId>
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
+ <version>5.1.25</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>javax.servlet</groupId>
|
|
|
+ <artifactId>servlet-api</artifactId>
|
|
|
+ <version>2.5</version>
|
|
|
+ <scope>provided</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.bouncycastle</groupId>
|
|
|
+ <artifactId>bcmail-jdk15</artifactId>
|
|
|
+ <version>1.46</version>
|
|
|
+ <type>pom</type>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.bouncycastle</groupId>
|
|
|
+ <artifactId>bcprov-jdk15</artifactId>
|
|
|
+ <version>1.46</version>
|
|
|
+ <type>pom</type>
|
|
|
+ </dependency>
|
|
|
+ <!-- <dependency> <groupId>MD5</groupId> <artifactId>ylswCommons</artifactId>
|
|
|
+ <version>1.0</version> </dependency> <dependency> <groupId>wxpay-scanpay</groupId>
|
|
|
+ <artifactId>wxpay-scanpay-java-sdk</artifactId> <version>1.0</version> </dependency>
|
|
|
+ <dependency> <groupId>xstream</groupId> <artifactId>xstream</artifactId>
|
|
|
+ <version>1.4.7</version> </dependency> -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>xmlpull</groupId>
|
|
|
+ <artifactId>xmlpull</artifactId>
|
|
|
+ <version>1.1.3.1</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.httpcomponents</groupId>
|
|
|
+ <artifactId>httpmime</artifactId>
|
|
|
+ <version>4.3.5</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ <artifactId>slf4j-api</artifactId>
|
|
|
+ <version>1.7.13</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ <artifactId>slf4j-log4j12</artifactId>
|
|
|
+ <version>1.7.13</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.bouncycastle</groupId>
|
|
|
+ <artifactId>bcprov-jdk15</artifactId>
|
|
|
+ <version>1.46</version>
|
|
|
+ <type>pom</type>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.jcraft</groupId>
|
|
|
+ <artifactId>jsch</artifactId>
|
|
|
+ <version>0.1.51</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.jcraft</groupId>
|
|
|
+ <artifactId>jzlib</artifactId>
|
|
|
+ <version>1.0.7</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
+ <artifactId>poi-excelant</artifactId>
|
|
|
+ <version>3.9</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.itextpdf.tool</groupId>
|
|
|
+ <artifactId>xmlworker</artifactId>
|
|
|
+ <version>5.5.9</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.itextpdf</groupId>
|
|
|
+ <artifactId>itextpdf</artifactId>
|
|
|
+ <version>5.5.11</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>log4j</groupId>
|
|
|
+ <artifactId>log4j</artifactId>
|
|
|
+ <version>1.2.17</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.elasticsearch</groupId>
|
|
|
+ <artifactId>elasticsearch</artifactId>
|
|
|
+ <version>5.2.1</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.elasticsearch.client</groupId>
|
|
|
+ <artifactId>transport</artifactId>
|
|
|
+ <version>5.2.1</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId>
|
|
|
+ <version>2.6.2</version> </dependency> -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
+ <version>1.2.47</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>net.coobird</groupId>
|
|
|
+ <artifactId>thumbnailator</artifactId>
|
|
|
+ <version>0.4.8</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- https://mvnrepository.com/artifact/com.itextpdf/itextpdf -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.itextpdf</groupId>
|
|
|
+ <artifactId>itextpdf</artifactId>
|
|
|
+ <version>5.5.13</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- https://mvnrepository.com/artifact/com.itextpdf/itext-asian -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.itextpdf</groupId>
|
|
|
+ <artifactId>itext-asian</artifactId>
|
|
|
+ <version>5.2.0</version>
|
|
|
+ </dependency>
|
|
|
+ <!--<dependency>
|
|
|
+ <groupId>cn.hutool</groupId>
|
|
|
+ <artifactId>hutool-all</artifactId>
|
|
|
+ <version>4.4.2</version>
|
|
|
+ </dependency>-->
|
|
|
+
|
|
|
+ </dependencies>
|
|
|
+
|
|
|
+ <build>
|
|
|
+ <finalName>adm</finalName>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.codehaus.mojo</groupId>
|
|
|
+ <artifactId>tomcat-maven-plugin</artifactId>
|
|
|
+ <version>1.1</version>
|
|
|
+ <configuration>
|
|
|
+ <url>http://localhost:8099/adm</url>
|
|
|
+ <server>tomcat</server>
|
|
|
+ <username>admin</username>
|
|
|
+ <password>password</password>
|
|
|
+ <path>/adm</path>
|
|
|
+ <contextFile>src/main/resources/birtDataSource.xml</contextFile>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.tomcat.maven</groupId>
|
|
|
+ <artifactId>tomcat7-maven-plugin</artifactId>
|
|
|
+ <version>2.2</version>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
+ <version>3.1</version>
|
|
|
+ <configuration>
|
|
|
+ <source>1.6</source>
|
|
|
+ <target>1.6</target>
|
|
|
+ <encoding>UTF-8</encoding>
|
|
|
+ <compilerArguments>
|
|
|
+ <extdirs>src\main\webapp\WEB-INF\lib</extdirs>
|
|
|
+ </compilerArguments>
|
|
|
+ <!-- <compilerArgs> <arg>-verbose</arg> <arg>-Xlint:unchecked</arg>
|
|
|
+ <arg>-Xlint:deprecation</arg> <arg>-bootclasspath</arg> <arg>${env.JAVA_HOME}/jre/lib/rt.jar</arg>
|
|
|
+ <arg>-extdirs</arg> <arg>src/main/webapp/WEB-INF/lib</arg> </compilerArgs> -->
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+
|
|
|
+</project>
|