2024-10-30 10:02:55 +08:00
|
|
|
|
<?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.njcn</groupId>
|
|
|
|
|
|
<artifactId>njcn-springboot</artifactId>
|
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
|
</parent>
|
|
|
|
|
|
<artifactId>spingboot2.3.12</artifactId>
|
|
|
|
|
|
<version>2.3.12</version>
|
|
|
|
|
|
<name>整理以2.3.12为基础版本的所有相关依赖</name>
|
|
|
|
|
|
<properties>
|
|
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
|
<knife4j.version>3.0.2</knife4j.version>
|
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
<!--公共依赖-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
|
<artifactId>njcn-common</artifactId>
|
|
|
|
|
|
<version>0.0.1</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!--spring webmvc starter-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
|
<version>${spring-boot.version}</version>
|
2025-02-13 09:00:19 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
|
|
<version>${spring-boot.version}</version>
|
2024-10-30 10:02:55 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- Actuator监控当前应用的健康,虚拟机等信息,通过前端以可视化的界面展示出来 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--避免idea后端配置类报红-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--测试依赖-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!--API接口文档-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
|
|
|
|
<artifactId>knife4j-spring-boot-starter</artifactId>
|
|
|
|
|
|
<version>${knife4j.version}</version>
|
|
|
|
|
|
<exclusions>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
</exclusions>
|
|
|
|
|
|
</dependency>
|
2024-10-30 20:04:37 +08:00
|
|
|
|
|
2024-10-30 10:02:55 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
|
|
|
|
<artifactId>knife4j-spring-ui</artifactId>
|
|
|
|
|
|
<version>${knife4j.version}</version>
|
|
|
|
|
|
</dependency>
|
2024-11-05 10:31:03 +08:00
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>cn.afterturn</groupId>
|
|
|
|
|
|
<artifactId>easypoi-base</artifactId>
|
|
|
|
|
|
<version>4.4.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2024-10-30 10:02:55 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
</project>
|