2016-10-04 23:18:29 +08:00
|
|
|
<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>
|
|
|
|
|
2016-11-24 23:16:59 +08:00
|
|
|
<groupId>com.zheng</groupId>
|
2016-11-14 13:12:32 +08:00
|
|
|
<artifactId>zheng-common</artifactId>
|
2016-11-24 23:16:59 +08:00
|
|
|
<version>1.0.0</version>
|
2016-10-04 23:18:29 +08:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2016-11-14 14:55:21 +08:00
|
|
|
<name>zheng-common</name>
|
2016-10-04 23:18:29 +08:00
|
|
|
<url>http://www.zhangshuzheng.cn</url>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2016-10-19 16:55:13 +08:00
|
|
|
|
2016-12-16 18:05:54 +08:00
|
|
|
<maven.compiler.source>1.7</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.7</maven.compiler.target>
|
|
|
|
<maven.compiler.compilerVersion>1.7</maven.compiler.compilerVersion>
|
|
|
|
|
2016-10-19 16:55:13 +08:00
|
|
|
<spring.version>4.3.3.RELEASE</spring.version>
|
|
|
|
<spring-security.version>4.1.3.RELEASE</spring-security.version>
|
|
|
|
|
|
|
|
<mybatis.version>3.4.1</mybatis.version>
|
|
|
|
<mybatis-spring.version>1.3.0</mybatis-spring.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>
|
2016-11-08 18:09:57 +08:00
|
|
|
|
|
|
|
<thymeleaf.version>3.0.2.RELEASE</thymeleaf.version>
|
2016-10-04 23:18:29 +08:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.12</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- spring -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
2016-10-14 22:29:54 +08:00
|
|
|
<artifactId>spring-context-support</artifactId>
|
2016-10-04 23:18:29 +08:00
|
|
|
<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-jdbc</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
2016-11-24 17:02:59 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-jms</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
2016-10-18 22:05:58 +08:00
|
|
|
<!-- spring security -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-web</artifactId>
|
2016-10-19 16:55:13 +08:00
|
|
|
<version>${spring-security.version}</version>
|
2016-10-18 22:05:58 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-config</artifactId>
|
2016-10-19 16:55:13 +08:00
|
|
|
<version>${spring-security.version}</version>
|
2016-10-18 22:05:58 +08:00
|
|
|
</dependency>
|
2016-10-04 23:18:29 +08:00
|
|
|
<!-- mybatis -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mybatis</groupId>
|
|
|
|
<artifactId>mybatis</artifactId>
|
|
|
|
<version>${mybatis.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mybatis</groupId>
|
|
|
|
<artifactId>mybatis-spring</artifactId>
|
|
|
|
<version>${mybatis-spring.version}</version>
|
|
|
|
</dependency>
|
2016-12-30 13:58:00 +08:00
|
|
|
<!--
|
2016-12-24 23:19:16 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
<artifactId>mybatis-plus</artifactId>
|
|
|
|
<version>2.0</version>
|
|
|
|
</dependency>
|
2016-12-30 13:58:00 +08:00
|
|
|
-->
|
2016-10-04 23:18:29 +08:00
|
|
|
<dependency>
|
2016-10-17 14:36:55 +08:00
|
|
|
<groupId>org.mybatis.generator</groupId>
|
|
|
|
<artifactId>mybatis-generator-core</artifactId>
|
2016-10-19 16:55:13 +08:00
|
|
|
<version>${mybatis-generator.version}</version>
|
2016-10-04 23:18:29 +08:00
|
|
|
</dependency>
|
2016-12-24 23:19:16 +08:00
|
|
|
<!-- dubbo -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>dubbo</artifactId>
|
|
|
|
<version>2.5.3</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.sgroschupf</groupId>
|
|
|
|
<artifactId>zkclient</artifactId>
|
|
|
|
<version>0.1</version>
|
|
|
|
</dependency>
|
2017-01-10 18:18:29 +08:00
|
|
|
<!-- velocity模板引擎 -->
|
2016-12-26 00:00:41 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.velocity</groupId>
|
|
|
|
<artifactId>velocity</artifactId>
|
|
|
|
<version>1.7</version>
|
|
|
|
</dependency>
|
2016-10-14 22:29:54 +08:00
|
|
|
<!-- 缓存 -->
|
2016-10-14 18:10:56 +08:00
|
|
|
<dependency>
|
2016-10-14 22:29:54 +08:00
|
|
|
<groupId>net.sf.ehcache</groupId>
|
2016-10-14 18:10:56 +08:00
|
|
|
<artifactId>ehcache</artifactId>
|
2016-10-19 16:55:13 +08:00
|
|
|
<version>${ehcache.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mybatis</groupId>
|
|
|
|
<artifactId>mybatis-ehcache</artifactId>
|
|
|
|
<version>${mybatis-ehcache.version}</version>
|
2016-10-14 18:10:56 +08:00
|
|
|
</dependency>
|
2016-11-26 23:46:22 +08:00
|
|
|
<!-- mysql -->
|
2016-10-04 23:18:29 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
<version>5.1.34</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>druid</artifactId>
|
|
|
|
<version>1.0.14</version>
|
|
|
|
</dependency>
|
2016-11-26 23:46:22 +08:00
|
|
|
<!-- redis -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>redis.clients</groupId>
|
|
|
|
<artifactId>jedis</artifactId>
|
|
|
|
<version>2.9.0</version>
|
|
|
|
</dependency>
|
2016-12-16 18:05:54 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
<artifactId>spring-data-redis</artifactId>
|
|
|
|
<version>1.7.5.RELEASE</version>
|
|
|
|
</dependency>
|
2016-10-04 23:18:29 +08:00
|
|
|
<!-- 日志 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
2016-10-14 18:10:56 +08:00
|
|
|
<artifactId>slf4j-api</artifactId>
|
2016-10-04 23:18:29 +08:00
|
|
|
<version>1.7.12</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
2016-10-14 18:10:56 +08:00
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
2016-10-04 23:18:29 +08:00
|
|
|
<version>1.7.12</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- 上传 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-fileupload</groupId>
|
|
|
|
<artifactId>commons-fileupload</artifactId>
|
|
|
|
<version>1.3.1</version>
|
|
|
|
</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>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
<version>2.5.4</version>
|
|
|
|
</dependency>
|
2016-12-18 19:51:24 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-compress</artifactId>
|
|
|
|
<version>1.12</version>
|
|
|
|
</dependency>
|
2016-10-04 23:18:29 +08:00
|
|
|
<!-- Hibernate Validator -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.persistence</groupId>
|
|
|
|
<artifactId>persistence-api</artifactId>
|
|
|
|
<version>1.0.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.validation</groupId>
|
|
|
|
<artifactId>validation-api</artifactId>
|
|
|
|
<version>1.1.0.Final</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
|
<version>5.2.2.Final</version>
|
|
|
|
</dependency>
|
2016-11-08 18:09:57 +08:00
|
|
|
<!-- Thymeleaf -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.thymeleaf</groupId>
|
|
|
|
<artifactId>thymeleaf</artifactId>
|
|
|
|
<version>${thymeleaf.version}</version>
|
|
|
|
</dependency><dependency>
|
|
|
|
<groupId>org.thymeleaf</groupId>
|
|
|
|
<artifactId>thymeleaf-spring4</artifactId>
|
|
|
|
<version>${thymeleaf.version}</version>
|
|
|
|
</dependency>
|
2016-11-24 17:02:59 +08:00
|
|
|
<!-- ActiveMQ -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-core</artifactId>
|
|
|
|
<version>5.7.0</version>
|
|
|
|
</dependency>
|
2016-11-26 21:53:26 +08:00
|
|
|
<!-- json -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.json-lib</groupId>
|
|
|
|
<artifactId>json-lib</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<classifier>jdk15</classifier>
|
|
|
|
</dependency>
|
2016-12-16 18:05:54 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
<version>1.2.22</version>
|
|
|
|
</dependency>
|
2016-12-11 21:12:59 +08:00
|
|
|
<!-- java mail -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.mail</groupId>
|
|
|
|
<artifactId>mail</artifactId>
|
|
|
|
<version>1.4.7</version>
|
|
|
|
</dependency>
|
2016-12-12 13:29:20 +08:00
|
|
|
<!-- httpclient -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
<version>4.5.2</version>
|
|
|
|
</dependency>
|
2016-10-04 23:18:29 +08:00
|
|
|
<!-- servlet -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>jstl</artifactId>
|
|
|
|
<version>1.2</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2016-12-18 19:51:24 +08:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>zheng-common</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>2.18.1</version>
|
|
|
|
<configuration>
|
|
|
|
<skipTests>true</skipTests>
|
|
|
|
<testFailureIgnore>true</testFailureIgnore>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2016-10-04 23:18:29 +08:00
|
|
|
</project>
|