diff options
| author | tanghao <default@DESKTOP-7FEGRP2> | 2019-11-29 18:25:03 +0800 |
|---|---|---|
| committer | tanghao <default@DESKTOP-7FEGRP2> | 2019-11-29 18:25:03 +0800 |
| commit | 7f613afb92b399df0b3e808c59a744bc4ea304a5 (patch) | |
| tree | fc9f46ad6f9e4e7040233e3cecfcd55cdfbc56c2 /pom.xml | |
| parent | 7d43f2c999e55c003fb1598a4621aaf9bcd05e67 (diff) | |
confagent初版
Diffstat (limited to 'pom.xml')
| -rw-r--r-- | pom.xml | 419 |
1 files changed, 419 insertions, 0 deletions
@@ -0,0 +1,419 @@ +<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>
+ <groupId>com.nis</groupId>
+ <artifactId>nz-confagent</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+
+ <!-- 项目属性 -->
+ <properties>
+
+ <!-- main version setting -->
+ <spring.version>4.1.9.RELEASE</spring.version>
+ <validator.version>5.2.4.Final</validator.version>
+ <mybatis.version>3.2.8</mybatis.version>
+ <mybatis-spring.version>1.2.3</mybatis-spring.version>
+ <druid.version>1.0.18</druid.version>
+ <ehcache.version>2.6.11</ehcache.version>
+ <ehcache-web.version>2.0.4</ehcache-web.version>
+ <shiro.version>1.2.3</shiro.version>
+ <sitemesh.version>2.4.2</sitemesh.version>
+ <activiti.version>5.21.0</activiti.version>
+ <quartz.version>2.3.0</quartz.version>
+ <!-- tools version setting -->
+ <slf4j.version>1.7.7</slf4j.version>
+ <commons-lang3.version>3.3.2</commons-lang3.version>
+ <commons-io.version>2.4</commons-io.version>
+ <commons-codec.version>1.9</commons-codec.version>
+ <commons-fileupload.version>1.3.1</commons-fileupload.version>
+ <commons-beanutils.version>1.9.1</commons-beanutils.version>
+ <jackson.version>2.2.3</jackson.version>
+ <fastjson.version>1.1.40</fastjson.version>
+ <guava.version>17.0</guava.version>
+
+ <!-- jdbc driver setting -->
+ <mysql.driver.version>5.1.30</mysql.driver.version>
+ <mssql.driver.version>1.3.1</mssql.driver.version>
+ <pgsql.driver.version>42.2.5</pgsql.driver.version>
+
+ <!-- environment setting -->
+ <jdk.version>1.8</jdk.version>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+
+ </properties>
+
+ <!-- 设定主仓库,按设定顺序进行查找。
+ <repositories>
+
+ <repository>
+ <id>jeesite-repos</id>
+ <name>Jeesite Repository</name>
+ <url>http://maven.aliyun.com/nexus/content/groups/public</url>
+ </repository>
+
+ </repositories> -->
+
+ <!-- 设定插件仓库
+ <pluginRepositories>
+
+ <pluginRepository>
+ <id>jeesite-repos</id>
+ <name>Jeesite Repository</name>
+ <url>http://maven.aliyun.com/nexus/content/groups/public</url>
+ </pluginRepository>
+
+ </pluginRepositories> -->
+ <!-- 依赖项定义 -->
+ <dependencies>
+ <dependency>
+ <groupId>org.yaml</groupId>
+ <artifactId>snakeyaml</artifactId>
+ <version>1.23</version>
+ </dependency>
+ <!-- SPRING begin -->
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-core</artifactId>
+ <version>${spring.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ </exclusion>
+ </exclusions>
+ </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-context-support</artifactId>
+ <version>${spring.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-aop</artifactId>
+ <version>${spring.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-tx</artifactId>
+ <version>${spring.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.quartz-scheduler</groupId>
+ <artifactId>quartz</artifactId>
+ <version>${quartz.version}</version>
+ <!-- <exclusions>
+ <exclusion>
+ <groupId>com.mchange</groupId>
+ <artifactId>c3p0</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>com.zaxxer</groupId>
+ <artifactId>HikariCP-java6</artifactId>
+ </exclusion>
+ </exclusions> -->
+ </dependency>
+ <!-- spring orm -->
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-orm</artifactId>
+ <version>${spring.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-jdbc</artifactId>
+ <version>${spring.version}</version>
+ </dependency>
+
+ <!-- bean validate -->
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-validator</artifactId>
+ <version>${validator.version}</version>
+ </dependency>
+ <!-- SPRING end -->
+
+ <!-- AOP begin -->
+ <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</artifactId>
+ <version>3.1</version>
+ </dependency>
+ <!-- AOP end -->
+
+ <!-- PERSISTENCE begin -->
+
+ <!-- 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>
+
+ <!-- connection pool -->
+ <dependency>
+ <groupId>com.alibaba</groupId>
+ <artifactId>druid</artifactId>
+ <version>${druid.version}</version>
+ </dependency>
+
+ <!-- jdbc driver -->
+ <dependency>
+ <groupId>mysql</groupId>
+ <artifactId>mysql-connector-java</artifactId>
+ <version>${mysql.driver.version}</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.jtds</groupId>
+ <artifactId>jtds</artifactId>
+ <version>${mssql.driver.version}</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.postgresql</groupId>
+ <artifactId>postgresql</artifactId>
+ <version>${pgsql.driver.version}</version>
+ </dependency>
+
+ <!-- PERSISTENCE end -->
+
+
+ <!-- LOGGING begin -->
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ <version>${slf4j.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-log4j12</artifactId>
+ <version>${slf4j.version}</version>
+ </dependency>
+ <!-- common-logging 实际调用slf4j -->
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>jcl-over-slf4j</artifactId>
+ <version>${slf4j.version}</version>
+ </dependency>
+ <!-- java.util.logging 实际调用slf4j -->
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>jul-to-slf4j</artifactId>
+ <version>${slf4j.version}</version>
+ </dependency>
+ <!-- LOGGING end -->
+
+ <!-- GENERAL UTILS begin -->
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-lang3</artifactId>
+ <version>${commons-lang3.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ <version>${commons-io.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-codec</groupId>
+ <artifactId>commons-codec</artifactId>
+ <version>${commons-codec.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-fileupload</groupId>
+ <artifactId>commons-fileupload</artifactId>
+ <version>${commons-fileupload.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-beanutils</groupId>
+ <artifactId>commons-beanutils</artifactId>
+ <version>${commons-beanutils.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+
+ <!-- google java lib -->
+ <dependency>
+ <groupId>com.google.guava</groupId>
+ <artifactId>guava</artifactId>
+ <version>${guava.version}</version>
+ </dependency>
+
+ <!-- jackson json -->
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-core</artifactId>
+ <version>${jackson.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-databind</artifactId>
+ <version>${jackson.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-annotations</artifactId>
+ <version>${jackson.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.module</groupId>
+ <artifactId>jackson-module-jaxb-annotations</artifactId>
+ <version>${jackson.version}</version>
+ </dependency>
+
+ <!-- fastjson json -->
+ <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId>
+ <version>${fastjson.version}</version>
+ </dependency>
+
+
+
+
+
+ <!-- TEST begin -->
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.11</version>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-test</artifactId>
+ <version>${spring.version}</version>
+ </dependency>
+ <!-- TEST end -->
+
+ <dependency>
+ <groupId>cn.hutool</groupId>
+ <artifactId>hutool-all</artifactId>
+ <version>4.1.19</version>
+ </dependency>
+
+
+ </dependencies>
+
+ <build>
+ <outputDirectory>${project.basedir}/src/main/webapp/WEB-INF/classes/</outputDirectory>
+ <plugins>
+ <!-- Compiler 插件, 设定JDK版本 -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>3.5.1</version>
+ <configuration>
+ <source>${jdk.version}</source>
+ <target>${jdk.version}</target>
+ <showWarnings>true</showWarnings>
+ </configuration>
+ </plugin>
+
+ <!-- 打包jar文件时,配置manifest文件,加入lib包的jar依赖 -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>2.4</version>
+ <configuration>
+ <encoding>${project.build.sourceEncoding}</encoding>
+ </configuration>
+ </plugin>
+
+
+ <!-- Eclipse 插件 -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-eclipse-plugin</artifactId>
+ <version>2.9</version>
+ <configuration>
+ <downloadSources>${downloadSources}</downloadSources>
+ <downloadJavadocs>false</downloadJavadocs>
+ <wtpversion>2.0</wtpversion>
+ <jeeversion>5.0</jeeversion>
+ <!-- <jeeversion>6.0</jeeversion> -->
+ <additionalConfig>
+ <file>
+ <name>.settings/org.eclipse.core.resources.prefs</name>
+ <content>
+ <![CDATA[eclipse.preferences.version=1${line.separator}encoding/<project>=${project.build.sourceEncoding}${line.separator}]]>
+ </content>
+ </file>
+ </additionalConfig>
+ <additionalProjectnatures>
+ <projectnature>org.springframework.ide.eclipse.core.springnature</projectnature>
+ </additionalProjectnatures>
+ </configuration>
+ </plugin>
+
+
+ <!-- resource插件 -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-resources-plugin</artifactId>
+ <version>2.7</version>
+ </plugin>
+
+ <!-- install插件 -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-install-plugin</artifactId>
+ <version>2.5.2</version>
+ </plugin>
+
+ <!-- clean插件 -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-clean-plugin</artifactId>
+ <version>2.6.1</version>
+ </plugin>
+
+ <!-- ant插件 -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.8</version>
+ </plugin>
+
+ <!-- dependency插件 -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <version>2.10</version>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>
\ No newline at end of file |
