|
@ -0,0 +1,372 @@
|
|
|
<?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>
|
|
|
<parent>
|
|
|
<groupId>com.yihu.ehr</groupId>
|
|
|
<artifactId>ehr-cloud-parent</artifactId>
|
|
|
<version>1.13.1</version>
|
|
|
</parent>
|
|
|
|
|
|
<artifactId>svr-eip-admin</artifactId>
|
|
|
<version>1.3.0</version>
|
|
|
<packaging>war</packaging>
|
|
|
<name>svr-eip-admin</name>
|
|
|
<description>EIP微服务</description>
|
|
|
|
|
|
<properties>
|
|
|
<org.apache.tiles-version>3.0.5</org.apache.tiles-version>
|
|
|
<!--<main.basedir>${basedir}/../..</main.basedir>-->
|
|
|
<!--<m2eclipse.wtp.contextRoot>/</m2eclipse.wtp.contextRoot>-->
|
|
|
</properties>
|
|
|
|
|
|
<dependencies>
|
|
|
<!-- spring cloud start-->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
<artifactId>spring-cloud-starter-config</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
<artifactId>spring-cloud-starter-eureka</artifactId>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<artifactId>netty-codec-http</artifactId>
|
|
|
<groupId>io.netty</groupId>
|
|
|
</exclusion>
|
|
|
<exclusion>
|
|
|
<artifactId>netty-transport</artifactId>
|
|
|
<groupId>io.netty</groupId>
|
|
|
</exclusion>
|
|
|
<exclusion>
|
|
|
<artifactId>netty-transport-native-epoll</artifactId>
|
|
|
<groupId>io.netty</groupId>
|
|
|
</exclusion>
|
|
|
<exclusion>
|
|
|
<artifactId>netty-handler</artifactId>
|
|
|
<groupId>io.netty</groupId>
|
|
|
</exclusion>
|
|
|
<exclusion>
|
|
|
<artifactId>netty-buffer</artifactId>
|
|
|
<groupId>io.netty</groupId>
|
|
|
</exclusion>
|
|
|
<exclusion>
|
|
|
<artifactId>netty-codec</artifactId>
|
|
|
<groupId>io.netty</groupId>
|
|
|
</exclusion>
|
|
|
<exclusion>
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
<groupId>commons-lang</groupId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
<artifactId>spring-cloud-starter</artifactId>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
<artifactId>spring-cloud-starter-feign</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-actuator</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
<artifactId>spring-cloud-starter-zuul</artifactId>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<artifactId>aspectjweaver</artifactId>
|
|
|
<groupId>org.aspectj</groupId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- spring cloud end -->
|
|
|
|
|
|
<!-- jwt start -->
|
|
|
<dependency>
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
<artifactId>jjwt</artifactId>
|
|
|
<version>0.7.0</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
<artifactId>lombok</artifactId>
|
|
|
<version>1.16.16</version>
|
|
|
<scope>provided</scope>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
<artifactId>spring-data-jpa</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.hibernate.javax.persistence</groupId>
|
|
|
<artifactId>hibernate-jpa-2.1-api</artifactId>
|
|
|
<version>1.0.0.Final</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- jwt end -->
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-cache</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
|
<artifactId>tomcat-embed-jasper</artifactId>
|
|
|
<scope>compile</scope>
|
|
|
</dependency>
|
|
|
<!--jxl导出工具-->
|
|
|
<dependency>
|
|
|
<groupId>net.sourceforge.jexcelapi</groupId>
|
|
|
<artifactId>jxl</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework</groupId>
|
|
|
<artifactId>spring-orm</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<!--=============tilesJSP布局框架 start =============-->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.tiles</groupId>
|
|
|
<artifactId>tiles-extras</artifactId>
|
|
|
<version>${org.apache.tiles-version}</version>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
<artifactId>guava</artifactId>
|
|
|
</exclusion>
|
|
|
<exclusion>
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
<groupId>commons-lang</groupId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.tiles</groupId>
|
|
|
<artifactId>tiles-jsp</artifactId>
|
|
|
<version>${org.apache.tiles-version}</version>
|
|
|
</dependency>
|
|
|
<!--=============tiles end =============-->
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.apache.xmlgraphics</groupId>
|
|
|
<artifactId>fop</artifactId>
|
|
|
<version>1.0</version>
|
|
|
<scope>provided</scope>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>xalan</groupId>
|
|
|
<artifactId>xalan</artifactId>
|
|
|
<version>2.7.0</version>
|
|
|
<scope>provided</scope>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.openoffice</groupId>
|
|
|
<artifactId>jurt</artifactId>
|
|
|
<version>2.3.0</version>
|
|
|
<scope>provided</scope>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.openoffice</groupId>
|
|
|
<artifactId>juh</artifactId>
|
|
|
<version>2.3.0</version>
|
|
|
<scope>provided</scope>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>net.sf.json-lib</groupId>
|
|
|
<artifactId>json-lib</artifactId>
|
|
|
<version>2.4</version>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
<groupId>commons-lang</groupId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework</groupId>
|
|
|
<artifactId>spring-jms</artifactId>
|
|
|
<version>4.3.2.RELEASE</version>
|
|
|
</dependency>
|
|
|
<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
|
|
|
<dependency>
|
|
|
<groupId>org.aspectj</groupId>
|
|
|
<artifactId>aspectjweaver</artifactId>
|
|
|
<version>1.8.9</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
<artifactId>commons-dbcp2</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.json</groupId>
|
|
|
<artifactId>json</artifactId>
|
|
|
<version>20140107</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>io.zbus</groupId>
|
|
|
<artifactId>zbus</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- test start -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
<scope>test</scope>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<artifactId>asm</artifactId>
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
<!-- test end -->
|
|
|
|
|
|
<!-- swagger start -->
|
|
|
<dependency>
|
|
|
<groupId>com.yihu.ehr</groupId>
|
|
|
<artifactId>commons-ui-swagger</artifactId>
|
|
|
<scope>compile</scope>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- jxl导出工具-->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
<artifactId>poi</artifactId>
|
|
|
<version>3.15-beta1</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
<version>3.15-beta1</version>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<artifactId>poi</artifactId>
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
<!-- swagger end -->
|
|
|
<dependency>
|
|
|
<groupId>com.oracle</groupId>
|
|
|
<artifactId>ojdbc6</artifactId>
|
|
|
<version>11.2.0.3</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- EIP -->
|
|
|
<dependency>
|
|
|
<groupId>com.yihu.ehr</groupId>
|
|
|
<artifactId>hos-web-framework</artifactId>
|
|
|
<version>${hos-web-framework}</version>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
</exclusion>
|
|
|
<exclusion>
|
|
|
<artifactId>fastDFS</artifactId>
|
|
|
<groupId>happy.fish</groupId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.yihu.ehr</groupId>
|
|
|
<artifactId>commons-rest-model</artifactId>
|
|
|
<scope>compile</scope>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.yihu.ehr</groupId>
|
|
|
<artifactId>commons-admin-gateway-model</artifactId>
|
|
|
<scope>compile</scope>
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
<!-- EHR -->
|
|
|
<dependency>
|
|
|
<groupId>com.yihu.core</groupId>
|
|
|
<artifactId>ehr-dbhelper</artifactId>
|
|
|
<version>1.1.9</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.yihu.ehr</groupId>
|
|
|
<artifactId>commons-data-fastdfs</artifactId>
|
|
|
<version>${version.ehr}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.yihu.ehr</groupId>
|
|
|
<artifactId>commons-rest-model</artifactId>
|
|
|
<version>${version.ehr}</version>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.session</groupId>
|
|
|
<artifactId>spring-session</artifactId>
|
|
|
<version>1.3.1.RELEASE</version>
|
|
|
</dependency>
|
|
|
<!--<dependency>-->
|
|
|
<!--<groupId>org.csource</groupId>-->
|
|
|
<!--<artifactId>fastdfs-client-java</artifactId>-->
|
|
|
<!--<version>1.27</version>-->
|
|
|
<!--</dependency>-->
|
|
|
<dependency>
|
|
|
<groupId>com.yihu.ehr</groupId>
|
|
|
<artifactId>commons-data-redis</artifactId>
|
|
|
<scope>compile</scope>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
|
|
|
<build>
|
|
|
<plugins>
|
|
|
<plugin>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
<version>${version.spring-boot}</version>
|
|
|
<executions>
|
|
|
<execution>
|
|
|
<goals>
|
|
|
<goal>repackage</goal>
|
|
|
</goals>
|
|
|
</execution>
|
|
|
</executions>
|
|
|
<configuration>
|
|
|
<mainClass>com.yihu.hos.HosAdminApplication</mainClass>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
</project>
|