|
@ -0,0 +1,692 @@
|
|
|
<?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>
|
|
|
|
|
|
<groupId>com.yihu.core</groupId>
|
|
|
<artifactId>Hos-Framework-dependencies</artifactId>
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
<packaging>pom</packaging>
|
|
|
<build>
|
|
|
<plugins>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
<configuration>
|
|
|
<source>1.7</source>
|
|
|
<target>1.7</target>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
<properties>
|
|
|
<aspectj.version>1.8.7</aspectj.version>
|
|
|
<jackson.version>2.4.6</jackson.version>
|
|
|
<spring.version>4.1.8.RELEASE</spring.version>
|
|
|
<spring.security.version>4.0.2.RELEASE</spring.security.version>
|
|
|
</properties>
|
|
|
<pluginRepositories>
|
|
|
<pluginRepository>
|
|
|
<id>pluginCentral</id>
|
|
|
<name>pluginCentral</name>
|
|
|
<url>http://172.19.103.47:8081/nexus/content/repositories/central/</url>
|
|
|
</pluginRepository>
|
|
|
<pluginRepository>
|
|
|
<id>pluginReleases</id>
|
|
|
<name>pluginReleases</name>
|
|
|
<url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
|
|
|
</pluginRepository>
|
|
|
</pluginRepositories>
|
|
|
<!--用于发布到服务器 对应setting的对应server表情里面的id -->
|
|
|
<distributionManagement>
|
|
|
<repository>
|
|
|
<id>Releases</id>
|
|
|
<name>Releases</name>
|
|
|
<url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
|
|
|
</repository>
|
|
|
<snapshotRepository>
|
|
|
<id>snapshots</id>
|
|
|
<name>Snapshots</name>
|
|
|
<url>http://172.19.103.47:8081/nexus/content/repositories/snapshots/</url>
|
|
|
</snapshotRepository>
|
|
|
</distributionManagement>
|
|
|
<repositories>
|
|
|
<repository>
|
|
|
<id>repositoryCentral</id>
|
|
|
<name>repositoryCentral</name>
|
|
|
<url>http://172.19.103.47:8081/nexus/content/repositories/central/</url>
|
|
|
</repository>
|
|
|
<repository>
|
|
|
<id>repositoryReleases</id>
|
|
|
<name>repositoryReleases</name>
|
|
|
<url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
|
|
|
</repository>
|
|
|
</repositories>
|
|
|
<dependencies>
|
|
|
<!--=============httpclient start=============-->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
<version>4.5.1</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
<artifactId>httpmime</artifactId>
|
|
|
<version>4.5.1</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
<artifactId>httpcore</artifactId>
|
|
|
<version>4.4.3</version>
|
|
|
</dependency>
|
|
|
<!--=============httpclient end=============-->
|
|
|
|
|
|
<!--=============hibernate start============-->
|
|
|
<dependency>
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
<artifactId>hibernate-core</artifactId>
|
|
|
<version>4.3.11.Final</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!--=============hibernate end============-->
|
|
|
<!--=============spring start =============-->
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework</groupId>
|
|
|
<artifactId>spring-aop</artifactId>
|
|
|
<version>${spring.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework</groupId>
|
|
|
<artifactId>spring-aspects</artifactId>
|
|
|
<version>${spring.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-context-support</artifactId>
|
|
|
<version>${spring.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework</groupId>
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
<version>${spring.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework</groupId>
|
|
|
<artifactId>spring-expression</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-orm</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-web</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-webmvc-portlet</artifactId>
|
|
|
<version>${spring.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework</groupId>
|
|
|
<artifactId>spring-websocket</artifactId>
|
|
|
<version>${spring.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework</groupId>
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
<version>${spring.version}</version>
|
|
|
<scope>test</scope>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
<artifactId>spring-security-acl</artifactId>
|
|
|
<version>${spring.security.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
<artifactId>spring-security-aspects</artifactId>
|
|
|
<version>${spring.security.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
<artifactId>spring-security-cas</artifactId>
|
|
|
<version>${spring.security.version}</version>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
<artifactId>log4j-over-slf4j</artifactId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
<artifactId>spring-security-config</artifactId>
|
|
|
<version>${spring.security.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
<artifactId>spring-security-core</artifactId>
|
|
|
<version>${spring.security.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
<artifactId>spring-security-crypto</artifactId>
|
|
|
<version>${spring.security.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
<artifactId>spring-security-ldap</artifactId>
|
|
|
<version>${spring.security.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
<artifactId>spring-security-openid</artifactId>
|
|
|
<version>${spring.security.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
<artifactId>spring-security-remoting</artifactId>
|
|
|
<version>${spring.security.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
<artifactId>spring-security-taglibs</artifactId>
|
|
|
<version>${spring.security.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
<artifactId>spring-security-web</artifactId>
|
|
|
<version>${spring.security.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>io.springfox</groupId>
|
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
|
<version>2.1.2</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>io.springfox</groupId>
|
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
|
<version>2.1.2</version>
|
|
|
</dependency>
|
|
|
<!--=============spring end =============-->
|
|
|
<!--=============jackson start =============-->
|
|
|
<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-annotations</artifactId>
|
|
|
<version>${jackson.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
<version>${jackson.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
<artifactId>jackson-core-asl</artifactId>
|
|
|
<version>1.9.13</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
<artifactId>jackson-jaxrs</artifactId>
|
|
|
<version>1.9.13</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
<artifactId>jackson-mapper-asl</artifactId>
|
|
|
<version>1.9.13</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
<artifactId>jackson-xc</artifactId>
|
|
|
<version>1.9.13</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.codehaus.jettison</groupId>
|
|
|
<artifactId>jettison</artifactId>
|
|
|
<version>1.1</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.codehaus.woodstox</groupId>
|
|
|
<artifactId>stax2-api</artifactId>
|
|
|
<version>3.1.4</version>
|
|
|
</dependency>
|
|
|
<!--=============jackson end =============-->
|
|
|
<!--=============axis start =============-->
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.apache.axis</groupId>
|
|
|
<artifactId>axis</artifactId>
|
|
|
<version>1.4</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.axis2</groupId>
|
|
|
<artifactId>axis2</artifactId>
|
|
|
<version>1.6.3</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.axis2</groupId>
|
|
|
<artifactId>axis2-adb</artifactId>
|
|
|
<version>1.6.3</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.axis2</groupId>
|
|
|
<artifactId>axis2-kernel</artifactId>
|
|
|
<version>1.6.3</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.axis2</groupId>
|
|
|
<artifactId>org.apache.axis2.osgi</artifactId>
|
|
|
<version>1.6.3</version>
|
|
|
</dependency>
|
|
|
<!--=============axis end =============-->
|
|
|
<!--=============log4j start =============-->
|
|
|
<dependency>
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
<artifactId>slf4j-nop</artifactId>
|
|
|
<version>1.7.13</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
<version>1.7.12</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
<artifactId>log4j-core</artifactId>
|
|
|
<version>2.4.1</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
<artifactId>log4j-api</artifactId>
|
|
|
<version>2.4.1</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>log4j</groupId>
|
|
|
<artifactId>log4j</artifactId>
|
|
|
<version>1.2.17</version>
|
|
|
</dependency>
|
|
|
<!--=============log4j end =============-->
|
|
|
<!--=============google工具 start =============-->
|
|
|
<dependency>
|
|
|
<groupId>com.google.protobuf</groupId>
|
|
|
<artifactId>protobuf-java</artifactId>
|
|
|
<version>2.5.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
<artifactId>guava</artifactId>
|
|
|
<version>16.0</version>
|
|
|
</dependency>
|
|
|
<!--=============google工具 end =============-->
|
|
|
|
|
|
<!--=============mysql驱动 start =============-->
|
|
|
<dependency>
|
|
|
<groupId>mysql</groupId>
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
<version>5.1.37</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!--=============mysql驱动 end =============-->
|
|
|
<!--=============oracle驱动 start =============
|
|
|
<dependency>
|
|
|
<groupId>com.oracle</groupId>
|
|
|
<artifactId>ojdbc6</artifactId>
|
|
|
<version>11.2.0.3.0</version>
|
|
|
</dependency>-->
|
|
|
<!--=============oracle驱动 end =============-->
|
|
|
<!--=============quartz start =============-->
|
|
|
<dependency>
|
|
|
<groupId>org.quartz-scheduler</groupId>
|
|
|
<artifactId>quartz</artifactId>
|
|
|
<version>2.0.1</version>
|
|
|
<!--<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
</exclusion>
|
|
|
</exclusions>-->
|
|
|
</dependency>
|
|
|
<!--=============quartz end =============-->
|
|
|
<!--=============junit单元测试 start =============-->
|
|
|
<dependency>
|
|
|
<groupId>junit</groupId>
|
|
|
<artifactId>junit</artifactId>
|
|
|
<version>4.11</version>
|
|
|
<scope>test</scope>
|
|
|
</dependency>
|
|
|
<!--=============junit end =============-->
|
|
|
<!--=============aspectj start =============-->
|
|
|
<dependency>
|
|
|
<groupId>org.aspectj</groupId>
|
|
|
<artifactId>aspectjrt</artifactId>
|
|
|
<version>${aspectj.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.aspectj</groupId>
|
|
|
<artifactId>aspectjweaver</artifactId>
|
|
|
<version>${aspectj.version}</version>
|
|
|
</dependency>
|
|
|
<!--=============aspectj end =============-->
|
|
|
|
|
|
<!--=============tilesJSP布局框架 start =============-->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.tiles</groupId>
|
|
|
<artifactId>tiles-extras</artifactId>
|
|
|
<version>3.0.5</version>
|
|
|
</dependency>
|
|
|
<!--=============tiles end =============-->
|
|
|
<!--=============sfjson start =============-->
|
|
|
<dependency>
|
|
|
<groupId>net.sf.json-lib</groupId>
|
|
|
<artifactId>json-lib</artifactId>
|
|
|
<version>2.4</version>
|
|
|
</dependency>
|
|
|
<!--=============sfjson end =============-->
|
|
|
<!--=============commons start =============-->
|
|
|
<dependency>
|
|
|
<groupId>commons-discovery</groupId>
|
|
|
<artifactId>commons-discovery</artifactId>
|
|
|
<version>0.2</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>commons-beanutils</groupId>
|
|
|
<artifactId>commons-beanutils</artifactId>
|
|
|
<version>1.9.2</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
<artifactId>commons-collections4</artifactId>
|
|
|
<version>4.0</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>commons-io</groupId>
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
<version>2.4</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
<artifactId>commons-dbcp2</artifactId>
|
|
|
<version>2.1</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>commons-codec</groupId>
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
<version>1.10</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>commons-configuration</groupId>
|
|
|
<artifactId>commons-configuration</artifactId>
|
|
|
<version>1.10</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>commons-dbutils</groupId>
|
|
|
<artifactId>commons-dbutils</artifactId>
|
|
|
<version>1.6</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>commons-fileupload</groupId>
|
|
|
<artifactId>commons-fileupload</artifactId>
|
|
|
<version>1.3.1</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
<version>3.3.2</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>commons-lang</groupId>
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
<version>2.6</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>commons-logging</groupId>
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
<version>1.2</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
<artifactId>commons-pool2</artifactId>
|
|
|
<version>2.4.2</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!--=============commons end =============-->
|
|
|
|
|
|
<!--=============fastdfs start =============-->
|
|
|
<dependency>
|
|
|
<groupId>org.csource</groupId>
|
|
|
<artifactId>fastdfs-client-java</artifactId>
|
|
|
<version>1.0</version>
|
|
|
</dependency>
|
|
|
<!--=============fastdfs end =============-->
|
|
|
<!--=============javamail start =============-->
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>javax.mail</groupId>
|
|
|
<artifactId>javax.mail-api</artifactId>
|
|
|
<version>1.5.4</version>
|
|
|
</dependency>
|
|
|
<!--=============javamail end =============-->
|
|
|
<!--=============cglib start =============-->
|
|
|
<dependency>
|
|
|
<!--字节码的动态生成工具-->
|
|
|
<groupId>cglib</groupId>
|
|
|
<artifactId>cglib</artifactId>
|
|
|
<version>3.1</version>
|
|
|
</dependency>
|
|
|
<!--=============cglib end =============-->
|
|
|
<!--=============ASM字节码库 start =============-->
|
|
|
<!--spring依赖包-->
|
|
|
<dependency>
|
|
|
<groupId>asm</groupId>
|
|
|
<artifactId>asm</artifactId>
|
|
|
<version>3.1</version>
|
|
|
</dependency>
|
|
|
<!--=============ASM字节码库 end =============-->
|
|
|
<!--=============aopalliance end =============-->
|
|
|
<!--spring依赖包-->
|
|
|
<dependency>
|
|
|
<groupId>aopalliance</groupId>
|
|
|
<artifactId>aopalliance</artifactId>
|
|
|
<version>1.0</version>
|
|
|
</dependency>
|
|
|
<!--=============aopalliance end =============-->
|
|
|
<dependency>
|
|
|
<groupId>org.json</groupId>
|
|
|
<artifactId>json</artifactId>
|
|
|
<version>20151123</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
<version>3.1.0</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>dom4j</groupId>
|
|
|
<artifactId>dom4j</artifactId>
|
|
|
<version>1.6.1</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>xml-apis</groupId>
|
|
|
<artifactId>xml-apis</artifactId>
|
|
|
<version>1.4.01</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>javax.xml</groupId>
|
|
|
<artifactId>jaxrpc-api</artifactId>
|
|
|
<version>1.1</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.antlr</groupId>
|
|
|
<artifactId>antlr4</artifactId>
|
|
|
<version>4.5</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>net.sf.ezmorph</groupId>
|
|
|
<artifactId>ezmorph</artifactId>
|
|
|
<version>1.0.6</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
<artifactId>hamcrest-core</artifactId>
|
|
|
<version>1.3</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.jboss</groupId>
|
|
|
<artifactId>jandex</artifactId>
|
|
|
<version>1.1.0.Final</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.javassist</groupId>
|
|
|
<artifactId>javassist</artifactId>
|
|
|
<version>3.18.1-GA</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>javax.persistence</groupId>
|
|
|
<artifactId>persistence-api</artifactId>
|
|
|
<version>1.0.2</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>jaxen</groupId>
|
|
|
<artifactId>jaxen</artifactId>
|
|
|
<version>1.1.6</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>jstl</groupId>
|
|
|
<artifactId>jstl</artifactId>
|
|
|
<version>1.2</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.belerweb</groupId>
|
|
|
<artifactId>pinyin4j</artifactId>
|
|
|
<version>2.5.0</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>taglibs</groupId>
|
|
|
<artifactId>standard</artifactId>
|
|
|
<version>1.1.2</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>net.lingala.zip4j</groupId>
|
|
|
<artifactId>zip4j</artifactId>
|
|
|
<version>1.3.2</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.htrace</groupId>
|
|
|
<artifactId>htrace-core</artifactId>
|
|
|
<version>3.1.0-incubating</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>io.netty</groupId>
|
|
|
<artifactId>netty-all</artifactId>
|
|
|
<version>4.0.32.Final</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.noggit</groupId>
|
|
|
<artifactId>noggit</artifactId>
|
|
|
<version>0.6</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.yihu.core</groupId>
|
|
|
<artifactId>ehr-redishelper</artifactId>
|
|
|
<version>1.0.0</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>redis.clients</groupId>
|
|
|
<artifactId>jedis</artifactId>
|
|
|
<version>2.8.0</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
<artifactId>spring-data-redis</artifactId>
|
|
|
<version>1.6.2.RELEASE</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.yihu.core</groupId>
|
|
|
<artifactId>core-rpc</artifactId>
|
|
|
<version>2.2.0</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.yihu.core</groupId>
|
|
|
<artifactId>ehr-dbhelper</artifactId>
|
|
|
<version>1.1.7</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>commons-net</groupId>
|
|
|
<artifactId>commons-net</artifactId>
|
|
|
<version>3.3</version>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
</project>
|