|
@ -0,0 +1,236 @@
|
|
|
<?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.jw</groupId>
|
|
|
<artifactId>wlyy-parent-pom</artifactId>
|
|
|
<version>2.0.0</version>
|
|
|
<relativePath>../../wlyy-parent-pom/pom.xml</relativePath>
|
|
|
</parent>
|
|
|
|
|
|
<groupId>com.yihu.jw</groupId>
|
|
|
<artifactId>svr-internet-hospital-entrance</artifactId>
|
|
|
<packaging>war</packaging>
|
|
|
<version>${parent.version}</version>
|
|
|
|
|
|
<dependencies>
|
|
|
<!-- 支持Tomcat启动 -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
<scope>provided</scope>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
|
<artifactId>tomcat-embed-jasper</artifactId>
|
|
|
</dependency>
|
|
|
<!-- 支持Tomcat启动 -->
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
<artifactId>spring-cloud-starter-eureka</artifactId>
|
|
|
</dependency>
|
|
|
<!--注释掉就不会读取git的配置,只会读取yml中的配置-->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
<artifactId>spring-cloud-starter-config</artifactId>
|
|
|
</dependency>
|
|
|
<!--<dependency>-->
|
|
|
<!--<groupId>org.springframework.cloud</groupId>-->
|
|
|
<!--<artifactId>spring-cloud-starter-zipkin</artifactId>-->
|
|
|
<!--</dependency>-->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-activemq</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.json</groupId>
|
|
|
<artifactId>json</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>com.yihu.jw</groupId>
|
|
|
<artifactId>common-entity</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.yihu.jw</groupId>
|
|
|
<artifactId>common-rest-model</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.yihu.jw</groupId>
|
|
|
<artifactId>common-request-mapping</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.yihu.jw</groupId>
|
|
|
<artifactId>common-exception</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.yihu.jw</groupId>
|
|
|
<artifactId>common-util</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.yihu.jw</groupId>
|
|
|
<artifactId>base-service</artifactId>
|
|
|
<version>${parent.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.yihu.jw</groupId>
|
|
|
<artifactId>common-web</artifactId>
|
|
|
</dependency>
|
|
|
<!--<dependency>-->
|
|
|
<!--<groupId>com.yihu.jw</groupId>-->
|
|
|
<!--<artifactId>common-tracer</artifactId>-->
|
|
|
<!--</dependency>-->
|
|
|
<!-- 文件服务器 -->
|
|
|
<dependency>
|
|
|
<groupId>com.yihu</groupId>
|
|
|
<artifactId>fastdfs-starter</artifactId>
|
|
|
<version>2.0.0</version>
|
|
|
</dependency>
|
|
|
<!-- Jzkl Starter -->
|
|
|
<dependency>
|
|
|
<groupId>com.yihu</groupId>
|
|
|
<artifactId>swagger-starter</artifactId>
|
|
|
<version>2.0.0</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.yihu</groupId>
|
|
|
<artifactId>mysql-starter</artifactId>
|
|
|
<version>2.0.0</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.yihu</groupId>
|
|
|
<artifactId>elasticsearch-starter</artifactId>
|
|
|
<version>2.0.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>io.github.swagger2markup</groupId>
|
|
|
<artifactId>swagger2markup</artifactId>
|
|
|
<version>1.3.2</version>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<artifactId>mailapi</artifactId>
|
|
|
<groupId>javax.mail</groupId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 发送邮件 -->
|
|
|
<dependency>
|
|
|
<groupId>com.sun.mail</groupId>
|
|
|
<artifactId>javax.mail</artifactId>
|
|
|
<version>1.4.7</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-mail</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- poi xml导入导出工具 start-->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
<artifactId>poi</artifactId>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>com.yihu.ehr</groupId>
|
|
|
<artifactId>commons-util</artifactId>
|
|
|
</exclusion>
|
|
|
<exclusion>
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
<artifactId>commons-collections4</artifactId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
</dependency>
|
|
|
<!-- xlsx 依赖这个包 -->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
<artifactId>poi-ooxml-schemas</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
<artifactId>spring-security-core</artifactId>
|
|
|
<version>RELEASE</version>
|
|
|
<scope>compile</scope>
|
|
|
</dependency>
|
|
|
<!-- poi xml导入导出工具 end -->
|
|
|
|
|
|
<!--基础业务组件-->
|
|
|
<dependency>
|
|
|
<groupId>com.yihu.jw</groupId>
|
|
|
<artifactId>base-service</artifactId>
|
|
|
<version>2.0.0</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.yihu.jw</groupId>
|
|
|
<artifactId>sms-service</artifactId>
|
|
|
<version>2.0.0</version>
|
|
|
<scope>compile</scope>
|
|
|
</dependency>
|
|
|
<!--<dependency>-->
|
|
|
<!--<groupId>junit</groupId>-->
|
|
|
<!--<artifactId>junit</artifactId>-->
|
|
|
<!--</dependency>-->
|
|
|
<dependency>
|
|
|
<groupId>org.junit.platform</groupId>
|
|
|
<artifactId>junit-platform-commons</artifactId>
|
|
|
<version>1.3.2</version>
|
|
|
</dependency>
|
|
|
<!--缩略图-->
|
|
|
<dependency>
|
|
|
<groupId>net.coobird</groupId>
|
|
|
<artifactId>thumbnailator</artifactId>
|
|
|
<version>0.4.8</version>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
|
|
|
<build>
|
|
|
<finalName>svr-internet-hospital-entrance</finalName>
|
|
|
<plugins>
|
|
|
<plugin>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
<configuration>
|
|
|
<mainClass>com.yihu.SvrPatientApplication</mainClass>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
<plugin>
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
<configuration>
|
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
|
<filteringDeploymentDescriptors>true</filteringDeploymentDescriptors>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
|
|
|
</project>
|