|
@@ -10,176 +10,169 @@
|
|
|
<name>zheng-common</name>
|
|
<name>zheng-common</name>
|
|
|
<url>http://www.zhangshuzheng.cn</url>
|
|
<url>http://www.zhangshuzheng.cn</url>
|
|
|
|
|
|
|
|
|
|
+ <parent>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
|
+ <version>1.5.3.RELEASE</version>
|
|
|
|
|
+ <relativePath/>
|
|
|
|
|
+ </parent>
|
|
|
|
|
+
|
|
|
<properties>
|
|
<properties>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
-
|
|
|
|
|
- <maven.compiler.source>1.7</maven.compiler.source>
|
|
|
|
|
- <maven.compiler.target>1.7</maven.compiler.target>
|
|
|
|
|
- <maven.compiler.compilerVersion>1.7</maven.compiler.compilerVersion>
|
|
|
|
|
-
|
|
|
|
|
- <spring.version>4.3.7.RELEASE</spring.version>
|
|
|
|
|
- <spring-security.version>4.1.3.RELEASE</spring-security.version>
|
|
|
|
|
-
|
|
|
|
|
- <mybatis.version>3.4.2</mybatis.version>
|
|
|
|
|
- <mybatis-spring.version>1.3.1</mybatis-spring.version>
|
|
|
|
|
- <mybatis-pagehelper.version>5.0.1</mybatis-pagehelper.version>
|
|
|
|
|
- <mybatis-generator.version>1.3.5</mybatis-generator.version>
|
|
|
|
|
- <mybatis-ehcache.version>1.0.0</mybatis-ehcache.version>
|
|
|
|
|
- <ehcache.version>2.10.0</ehcache.version>
|
|
|
|
|
|
|
+ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
|
+ <java.version>1.7</java.version>
|
|
|
|
|
+ <mybatis-spring-boot>1.2.0</mybatis-spring-boot>
|
|
|
<shiro.version>1.3.2</shiro.version>
|
|
<shiro.version>1.3.2</shiro.version>
|
|
|
-
|
|
|
|
|
- <thymeleaf.version>3.0.3.RELEASE</thymeleaf.version>
|
|
|
|
|
</properties>
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
<dependencies>
|
|
|
|
|
+ <!-- web -->
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>junit</groupId>
|
|
|
|
|
- <artifactId>junit</artifactId>
|
|
|
|
|
- <version>4.12</version>
|
|
|
|
|
- <scope>test</scope>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <!-- spring -->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.springframework</groupId>
|
|
|
|
|
- <artifactId>spring-context-support</artifactId>
|
|
|
|
|
- <version>${spring.version}</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.springframework</groupId>
|
|
|
|
|
- <artifactId>spring-webmvc</artifactId>
|
|
|
|
|
- <version>${spring.version}</version>
|
|
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- jpa -->
|
|
|
|
|
+ <!--<dependency>-->
|
|
|
|
|
+ <!--<groupId>org.springframework.boot</groupId>-->
|
|
|
|
|
+ <!--<artifactId>spring-boot-starter-data-jpa</artifactId>-->
|
|
|
|
|
+ <!--</dependency>-->
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ <!-- mybatis -->
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.springframework</groupId>
|
|
|
|
|
- <artifactId>spring-jdbc</artifactId>
|
|
|
|
|
- <version>${spring.version}</version>
|
|
|
|
|
|
|
+ <groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
|
+ <artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
|
|
+ <version>${mybatis-spring-boot}</version>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.springframework</groupId>
|
|
|
|
|
- <artifactId>spring-test</artifactId>
|
|
|
|
|
- <version>${spring.version}</version>
|
|
|
|
|
|
|
+ <groupId>com.github.pagehelper</groupId>
|
|
|
|
|
+ <artifactId>pagehelper</artifactId>
|
|
|
|
|
+ <version>5.0.1</version>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.springframework</groupId>
|
|
|
|
|
- <artifactId>spring-jms</artifactId>
|
|
|
|
|
- <version>${spring.version}</version>
|
|
|
|
|
|
|
+ <groupId>org.mybatis.generator</groupId>
|
|
|
|
|
+ <artifactId>mybatis-generator-core</artifactId>
|
|
|
|
|
+ <version>1.3.5</version>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
- <!-- spring security -->
|
|
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.springframework.security</groupId>
|
|
|
|
|
- <artifactId>spring-security-web</artifactId>
|
|
|
|
|
- <version>${spring-security.version}</version>
|
|
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
+ <scope>test</scope>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- aop -->
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.springframework.security</groupId>
|
|
|
|
|
- <artifactId>spring-security-config</artifactId>
|
|
|
|
|
- <version>${spring-security.version}</version>
|
|
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-aop</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
- <!--spring-session-->
|
|
|
|
|
|
|
+
|
|
|
|
|
+ <!-- redis -->
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.springframework.session</groupId>
|
|
|
|
|
- <artifactId>spring-session-data-redis</artifactId>
|
|
|
|
|
- <version>1.3.0.RELEASE</version>
|
|
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
- <!-- shiro -->
|
|
|
|
|
|
|
+
|
|
|
|
|
+ <!-- security -->
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.apache.shiro</groupId>
|
|
|
|
|
- <artifactId>shiro-core</artifactId>
|
|
|
|
|
- <version>${shiro.version}</version>
|
|
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-security</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- mail -->
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.apache.shiro</groupId>
|
|
|
|
|
- <artifactId>shiro-web</artifactId>
|
|
|
|
|
- <version>${shiro.version}</version>
|
|
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-mail</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- thymeleaf -->
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.apache.shiro</groupId>
|
|
|
|
|
- <artifactId>shiro-quartz</artifactId>
|
|
|
|
|
- <version>${shiro.version}</version>
|
|
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- jdbc -->
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.apache.shiro</groupId>
|
|
|
|
|
- <artifactId>shiro-spring</artifactId>
|
|
|
|
|
- <version>${shiro.version}</version>
|
|
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-jdbc</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
- <!-- mybatis -->
|
|
|
|
|
|
|
+
|
|
|
|
|
+ <!-- mysql -->
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.mybatis</groupId>
|
|
|
|
|
- <artifactId>mybatis</artifactId>
|
|
|
|
|
- <version>${mybatis.version}</version>
|
|
|
|
|
|
|
+ <groupId>mysql</groupId>
|
|
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
+ <version>5.1.34</version>
|
|
|
|
|
+ <scope>runtime</scope>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- druid -->
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.mybatis</groupId>
|
|
|
|
|
- <artifactId>mybatis-spring</artifactId>
|
|
|
|
|
- <version>${mybatis-spring.version}</version>
|
|
|
|
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
|
|
+ <artifactId>druid</artifactId>
|
|
|
|
|
+ <version>1.0.14</version>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- dubbo -->
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>com.github.pagehelper</groupId>
|
|
|
|
|
- <artifactId>pagehelper</artifactId>
|
|
|
|
|
- <version>${mybatis-pagehelper.version}</version>
|
|
|
|
|
|
|
+ <groupId>io.dubbo.springboot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-dubbo</artifactId>
|
|
|
|
|
+ <version>1.0.0</version>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- ehcache -->
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.mybatis.generator</groupId>
|
|
|
|
|
- <artifactId>mybatis-generator-core</artifactId>
|
|
|
|
|
- <version>${mybatis-generator.version}</version>
|
|
|
|
|
|
|
+ <groupId>net.sf.ehcache</groupId>
|
|
|
|
|
+ <artifactId>ehcache</artifactId>
|
|
|
|
|
+ <version>${ehcache.version}</version>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
- <!-- dubbo -->
|
|
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>com.alibaba</groupId>
|
|
|
|
|
- <artifactId>dubbo</artifactId>
|
|
|
|
|
- <version>2.5.3</version>
|
|
|
|
|
- <exclusions>
|
|
|
|
|
- <exclusion>
|
|
|
|
|
- <groupId>org.springframework</groupId>
|
|
|
|
|
- <artifactId>spring</artifactId>
|
|
|
|
|
- </exclusion>
|
|
|
|
|
- </exclusions>
|
|
|
|
|
|
|
+ <groupId>org.mybatis</groupId>
|
|
|
|
|
+ <artifactId>mybatis-ehcache</artifactId>
|
|
|
|
|
+ <version>1.0.0</version>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- zkclient -->
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<groupId>com.github.sgroschupf</groupId>
|
|
<groupId>com.github.sgroschupf</groupId>
|
|
|
<artifactId>zkclient</artifactId>
|
|
<artifactId>zkclient</artifactId>
|
|
|
<version>0.1</version>
|
|
<version>0.1</version>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
- <!-- velocity模板引擎 -->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.apache.velocity</groupId>
|
|
|
|
|
- <artifactId>velocity</artifactId>
|
|
|
|
|
- <version>1.7</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <!-- 缓存 -->
|
|
|
|
|
|
|
+
|
|
|
|
|
+ <!-- shiro -->
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>net.sf.ehcache</groupId>
|
|
|
|
|
- <artifactId>ehcache</artifactId>
|
|
|
|
|
- <version>${ehcache.version}</version>
|
|
|
|
|
|
|
+ <groupId>org.apache.shiro</groupId>
|
|
|
|
|
+ <artifactId>shiro-core</artifactId>
|
|
|
|
|
+ <version>${shiro.version}</version>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.mybatis</groupId>
|
|
|
|
|
- <artifactId>mybatis-ehcache</artifactId>
|
|
|
|
|
- <version>${mybatis-ehcache.version}</version>
|
|
|
|
|
|
|
+ <groupId>org.apache.shiro</groupId>
|
|
|
|
|
+ <artifactId>shiro-web</artifactId>
|
|
|
|
|
+ <version>${shiro.version}</version>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
- <!-- mysql -->
|
|
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>mysql</groupId>
|
|
|
|
|
- <artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
- <version>5.1.34</version>
|
|
|
|
|
- <scope>runtime</scope>
|
|
|
|
|
|
|
+ <groupId>org.apache.shiro</groupId>
|
|
|
|
|
+ <artifactId>shiro-quartz</artifactId>
|
|
|
|
|
+ <version>${shiro.version}</version>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>com.alibaba</groupId>
|
|
|
|
|
- <artifactId>druid</artifactId>
|
|
|
|
|
- <version>1.0.14</version>
|
|
|
|
|
|
|
+ <groupId>org.apache.shiro</groupId>
|
|
|
|
|
+ <artifactId>shiro-spring</artifactId>
|
|
|
|
|
+ <version>${shiro.version}</version>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
- <!-- redis -->
|
|
|
|
|
|
|
+
|
|
|
|
|
+ <!-- activemq -->
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>redis.clients</groupId>
|
|
|
|
|
- <artifactId>jedis</artifactId>
|
|
|
|
|
- <version>2.9.0</version>
|
|
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-activemq</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- velocity模板引擎 -->
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.springframework.data</groupId>
|
|
|
|
|
- <artifactId>spring-data-redis</artifactId>
|
|
|
|
|
- <version>1.7.5.RELEASE</version>
|
|
|
|
|
|
|
+ <groupId>org.apache.velocity</groupId>
|
|
|
|
|
+ <artifactId>velocity</artifactId>
|
|
|
|
|
+ <version>1.7</version>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
+
|
|
|
<!-- 日志 -->
|
|
<!-- 日志 -->
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<groupId>org.slf4j</groupId>
|
|
<groupId>org.slf4j</groupId>
|
|
@@ -191,12 +184,7 @@
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
<version>1.7.12</version>
|
|
<version>1.7.12</version>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
- <!-- 上传 -->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>commons-fileupload</groupId>
|
|
|
|
|
- <artifactId>commons-fileupload</artifactId>
|
|
|
|
|
- <version>1.3.1</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
|
|
+
|
|
|
<!-- swagger2 -->
|
|
<!-- swagger2 -->
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<groupId>io.springfox</groupId>
|
|
<groupId>io.springfox</groupId>
|
|
@@ -208,27 +196,14 @@
|
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
|
<version>2.4.0</version>
|
|
<version>2.4.0</version>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
- <!-- 常用工具包 -->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>commons-beanutils</groupId>
|
|
|
|
|
- <artifactId>commons-beanutils</artifactId>
|
|
|
|
|
- <version>1.9.3</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>commons-lang</groupId>
|
|
|
|
|
- <artifactId>commons-lang</artifactId>
|
|
|
|
|
- <version>2.6</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>commons-codec</groupId>
|
|
|
|
|
- <artifactId>commons-codec</artifactId>
|
|
|
|
|
- <version>1.10</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
|
|
+
|
|
|
|
|
+ <!-- json -->
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.apache.commons</groupId>
|
|
|
|
|
- <artifactId>commons-compress</artifactId>
|
|
|
|
|
- <version>1.12</version>
|
|
|
|
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
|
|
+ <version>1.2.28</version>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
+
|
|
|
<!-- Hibernate Validator -->
|
|
<!-- Hibernate Validator -->
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<groupId>javax.persistence</groupId>
|
|
<groupId>javax.persistence</groupId>
|
|
@@ -245,80 +220,48 @@
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
<version>5.2.2.Final</version>
|
|
<version>5.2.2.Final</version>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
+
|
|
|
<!-- fluent-validator -->
|
|
<!-- fluent-validator -->
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<groupId>com.baidu.unbiz</groupId>
|
|
<groupId>com.baidu.unbiz</groupId>
|
|
|
<artifactId>fluent-validator</artifactId>
|
|
<artifactId>fluent-validator</artifactId>
|
|
|
<version>1.0.6</version>
|
|
<version>1.0.6</version>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
- <!-- Thymeleaf -->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.thymeleaf</groupId>
|
|
|
|
|
- <artifactId>thymeleaf-spring4</artifactId>
|
|
|
|
|
- <version>${thymeleaf.version}</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <!-- ActiveMQ -->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.apache.activemq</groupId>
|
|
|
|
|
- <artifactId>activemq-core</artifactId>
|
|
|
|
|
- <version>5.7.0</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <!-- json -->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>net.sf.json-lib</groupId>
|
|
|
|
|
- <artifactId>json-lib</artifactId>
|
|
|
|
|
- <version>2.4</version>
|
|
|
|
|
- <classifier>jdk15</classifier>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>com.alibaba</groupId>
|
|
|
|
|
- <artifactId>fastjson</artifactId>
|
|
|
|
|
- <version>1.2.28</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
- <artifactId>jackson-core</artifactId>
|
|
|
|
|
- <version>2.6.5</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
- <artifactId>jackson-databind</artifactId>
|
|
|
|
|
- <version>2.6.5</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
- <artifactId>jackson-annotations</artifactId>
|
|
|
|
|
- <version>2.6.5</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <!-- java mail -->
|
|
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 上传 -->
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>javax.mail</groupId>
|
|
|
|
|
- <artifactId>mail</artifactId>
|
|
|
|
|
- <version>1.4.7</version>
|
|
|
|
|
|
|
+ <groupId>commons-fileupload</groupId>
|
|
|
|
|
+ <artifactId>commons-fileupload</artifactId>
|
|
|
|
|
+ <version>1.3.1</version>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
+
|
|
|
<!-- httpclient -->
|
|
<!-- httpclient -->
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
<artifactId>httpclient</artifactId>
|
|
<artifactId>httpclient</artifactId>
|
|
|
<version>4.5.2</version>
|
|
<version>4.5.2</version>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
- <!-- aspectj -->
|
|
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 常用工具包 -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>commons-beanutils</groupId>
|
|
|
|
|
+ <artifactId>commons-beanutils</artifactId>
|
|
|
|
|
+ <version>1.9.3</version>
|
|
|
|
|
+ </dependency>
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.aspectj</groupId>
|
|
|
|
|
- <artifactId>aspectjweaver</artifactId>
|
|
|
|
|
- <version>1.8.8</version>
|
|
|
|
|
|
|
+ <groupId>commons-lang</groupId>
|
|
|
|
|
+ <artifactId>commons-lang</artifactId>
|
|
|
|
|
+ <version>2.6</version>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
- <!-- servlet -->
|
|
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>javax.servlet</groupId>
|
|
|
|
|
- <artifactId>servlet-api</artifactId>
|
|
|
|
|
- <version>2.5</version>
|
|
|
|
|
- <scope>provided</scope>
|
|
|
|
|
|
|
+ <groupId>commons-codec</groupId>
|
|
|
|
|
+ <artifactId>commons-codec</artifactId>
|
|
|
|
|
+ <version>1.10</version>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>javax.servlet</groupId>
|
|
|
|
|
- <artifactId>jstl</artifactId>
|
|
|
|
|
- <version>1.2</version>
|
|
|
|
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
|
|
+ <artifactId>commons-compress</artifactId>
|
|
|
|
|
+ <version>1.12</version>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
</dependencies>
|
|
</dependencies>
|
|
|
|
|
|
|
@@ -336,4 +279,5 @@
|
|
|
</plugin>
|
|
</plugin>
|
|
|
</plugins>
|
|
</plugins>
|
|
|
</build>
|
|
</build>
|
|
|
|
|
+
|
|
|
</project>
|
|
</project>
|