|
|
<?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>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
<version>2.7.18</version>
|
|
|
<relativePath/>
|
|
|
</parent>
|
|
|
|
|
|
<groupId>com.medical</groupId>
|
|
|
<artifactId>record-system</artifactId>
|
|
|
<version>1.0.0</version>
|
|
|
|
|
|
<properties>
|
|
|
<java.version>1.8</java.version>
|
|
|
<mybatis-plus.version>3.5.3.2</mybatis-plus.version>
|
|
|
<httpclient.version>4.5.14</httpclient.version>
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
<!-- Web -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springdoc</groupId>
|
|
|
<artifactId>springdoc-openapi-ui</artifactId>
|
|
|
<version>1.7.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
<!-- SQL Server驱动(JDK 1.8版本) -->
|
|
|
<dependency>
|
|
|
<groupId>com.microsoft.sqlserver</groupId>
|
|
|
<artifactId>mssql-jdbc</artifactId>
|
|
|
<version>6.4.0.jre8</version>
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
<version>1.7.36</version> <!-- Spring Boot 2.7.x 默认版本 -->
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
<!-- MyBatis-Plus(兼容JDK 1.8) -->
|
|
|
<dependency>
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
<version>${mybatis-plus.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- Apache HttpClient(替代Java 11的HttpClient) -->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
<version>${httpclient.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
<artifactId>httpmime</artifactId>
|
|
|
<version>4.5.14</version>
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
<!-- Lombok -->
|
|
|
<dependency>
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
<artifactId>lombok</artifactId>
|
|
|
<optional>true</optional>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- Jackson XML -->
|
|
|
<dependency>
|
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
|
<artifactId>jackson-dataformat-xml</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 测试 -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
<scope>test</scope>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
|
|
|
<build>
|
|
|
<plugins>
|
|
|
<plugin>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
</project> |