You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
128 lines
4.6 KiB
XML
128 lines
4.6 KiB
XML
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
<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>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.3.5.RELEASE</version>
|
|
</parent>
|
|
|
|
<groupId>com.supervision</groupId>
|
|
<artifactId>virtual-patient</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>virtual-patient</name>
|
|
|
|
<modules>
|
|
<module>virtual-patient-common</module>
|
|
<module>virtual-patient-model</module>
|
|
<module>virtual-patient-web</module>
|
|
<module>virtual-patient-rasa</module>
|
|
<module>virtual-patient-manage</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
<spring.boot.version>2.3.5.RELEASE</spring.boot.version>
|
|
<fastjson.version>1.2.76</fastjson.version>
|
|
<mybatis-puls-spring-boot.version>3.3.1</mybatis-puls-spring-boot.version>
|
|
<druid.version>1.1.22</druid.version>
|
|
<hutool.version>5.8.16</hutool.version>
|
|
<knife4j.version>3.0.3</knife4j.version>
|
|
<lombok.version>1.18.20</lombok.version>
|
|
<knife4j.version>3.0.3</knife4j.version>
|
|
<tinyPinyin.version>2.0.3.RELEASE</tinyPinyin.version>
|
|
<poi-ooxml.version>4.1.2</poi-ooxml.version>
|
|
<freemarker.version>2.3.31</freemarker.version>
|
|
<mysql-connector-java.version>8.0.26</mysql-connector-java.version>
|
|
<io-swagger.version>1.5.22</io-swagger.version>
|
|
<lock4j.version>2.2.5</lock4j.version>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>${mysql-connector-java.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.freemarker</groupId>
|
|
<artifactId>freemarker</artifactId>
|
|
<version>${freemarker.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!--spring-boot-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
<version>${spring.boot.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
<version>${hutool.version}</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
<version>${druid.version}</version>
|
|
</dependency>
|
|
|
|
|
|
<!-- SpringBoot集成mybatis框架 -->
|
|
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
<version>${mybatis-puls-spring-boot.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
<artifactId>knife4j-spring-boot-starter</artifactId>
|
|
<version>${knife4j.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.github.biezhi</groupId>
|
|
<artifactId>TinyPinyin</artifactId>
|
|
<version>${tinyPinyin.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml</artifactId>
|
|
<version>${poi-ooxml.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.swagger</groupId>
|
|
<artifactId>swagger-annotations</artifactId>
|
|
<version>${io-swagger.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
</project>
|