137 lines
4.8 KiB
XML
137 lines
4.8 KiB
XML
|
|
<?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.ruoyi</groupId>
|
||
|
|
<artifactId>ruoyi-dependencies-bom</artifactId>
|
||
|
|
<version>4.4.0</version>
|
||
|
|
<packaging>pom</packaging>
|
||
|
|
<url>http://www.ruoyi.vip</url>
|
||
|
|
<name>${project.artifactId}</name>
|
||
|
|
<description>RuoYi dependencies BOM</description>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<ruoyi.version>4.4.0</ruoyi.version>
|
||
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
|
|
<java.version>1.8</java.version>
|
||
|
|
<knife4j.version>2.0.3</knife4j.version>
|
||
|
|
</properties>
|
||
|
|
<!-- 依赖声明 -->
|
||
|
|
<dependencyManagement>
|
||
|
|
<dependencies>
|
||
|
|
<!--自定义添加Jar依赖:2020/08/30-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.ruoyi</groupId>
|
||
|
|
<artifactId>ruoyi-his</artifactId>
|
||
|
|
<version>${ruoyi.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- HIS Core模块-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.bending.core</groupId>
|
||
|
|
<artifactId>bending-his-core</artifactId>
|
||
|
|
<version>1.0.5-SNAPSHOT</version>
|
||
|
|
</dependency>
|
||
|
|
<!--Other Jars-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.google.code.findbugs</groupId>
|
||
|
|
<artifactId>annotations</artifactId>
|
||
|
|
<version>3.0.1</version>
|
||
|
|
</dependency>
|
||
|
|
<!--MyBatis integration with Spring Boot-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
||
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
||
|
|
<version>2.1.3</version>
|
||
|
|
</dependency>
|
||
|
|
<!--通用Mapper-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>tk.mybatis</groupId>
|
||
|
|
<artifactId>mapper</artifactId>
|
||
|
|
<version>4.1.5</version>
|
||
|
|
</dependency>
|
||
|
|
<!--swagger-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.swagger</groupId>
|
||
|
|
<artifactId>swagger-models</artifactId>
|
||
|
|
<version>1.5.21</version>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.swagger</groupId>
|
||
|
|
<artifactId>swagger-annotations</artifactId>
|
||
|
|
<version>1.5.21</version>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.projectlombok</groupId>
|
||
|
|
<artifactId>lombok</artifactId>
|
||
|
|
<version>1.18.12</version>
|
||
|
|
</dependency>
|
||
|
|
<!--SwaggerUI-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.github.xiaoymin</groupId>
|
||
|
|
<artifactId>knife4j-spring-boot-starter</artifactId>
|
||
|
|
<version>${knife4j.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.github.xiaoymin</groupId>
|
||
|
|
<artifactId>knife4j-spring-ui</artifactId>
|
||
|
|
<version>${knife4j.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<!--zipkin-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.zipkin.brave</groupId>
|
||
|
|
<artifactId>brave-bom</artifactId>
|
||
|
|
<version>5.9.1</version>
|
||
|
|
<type>pom</type>
|
||
|
|
<scope>import</scope>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
</dependencyManagement>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
|
||
|
|
</build>
|
||
|
|
|
||
|
|
<distributionManagement>
|
||
|
|
<repository>
|
||
|
|
<id>nexus</id>
|
||
|
|
<name>maven-releases</name>
|
||
|
|
<url>http://nexus.liudebin.cn/repository/maven-releases/</url>
|
||
|
|
</repository>
|
||
|
|
<snapshotRepository>
|
||
|
|
<id>snapshots</id>
|
||
|
|
<name>maven-snapshots</name>
|
||
|
|
<url>http://nexus.liudebin.cn/repository/maven-snapshots/</url>
|
||
|
|
</snapshotRepository>
|
||
|
|
</distributionManagement>
|
||
|
|
|
||
|
|
<repositories>
|
||
|
|
<repository>
|
||
|
|
<id>public</id>
|
||
|
|
<name>aliyun nexus</name>
|
||
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
||
|
|
<releases>
|
||
|
|
<enabled>true</enabled>
|
||
|
|
</releases>
|
||
|
|
</repository>
|
||
|
|
</repositories>
|
||
|
|
|
||
|
|
<pluginRepositories>
|
||
|
|
<pluginRepository>
|
||
|
|
<id>public</id>
|
||
|
|
<name>aliyun nexus</name>
|
||
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
||
|
|
<releases>
|
||
|
|
<enabled>true</enabled>
|
||
|
|
</releases>
|
||
|
|
<snapshots>
|
||
|
|
<enabled>false</enabled>
|
||
|
|
</snapshots>
|
||
|
|
</pluginRepository>
|
||
|
|
</pluginRepositories>
|
||
|
|
|
||
|
|
</project>
|