You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
158 lines
4.3 KiB
158 lines
4.3 KiB
|
3 years ago
|
<?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 https://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>3.0.4</version>
|
||
|
|
<relativePath/> <!-- lookup parent from repository -->
|
||
|
|
</parent>
|
||
|
|
<groupId>co.depsystem</groupId>
|
||
|
|
<artifactId>app</artifactId>
|
||
|
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
|
<name>app</name>
|
||
|
|
<description>app</description>
|
||
|
|
<properties>
|
||
|
|
<java.version>17</java.version>
|
||
|
|
</properties>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.baomidou</groupId>
|
||
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
||
|
|
<version>3.5.3.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.mysql</groupId>
|
||
|
|
<artifactId>mysql-connector-j</artifactId>
|
||
|
|
<scope>runtime</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
||
|
|
<optional>true</optional>
|
||
|
|
</dependency>
|
||
|
|
<!-- lombok -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.projectlombok</groupId>
|
||
|
|
<artifactId>lombok</artifactId>
|
||
|
|
<optional>true</optional>
|
||
|
|
<version>1.18.26</version>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.restdocs</groupId>
|
||
|
|
<artifactId>spring-restdocs-mockmvc</artifactId>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>javax.persistence</groupId>
|
||
|
|
<artifactId>persistence-api</artifactId>
|
||
|
|
<version>1.0.2</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- mapStruct转换 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.mapstruct</groupId>
|
||
|
|
<artifactId>mapstruct</artifactId>
|
||
|
|
<version>1.5.3.Final</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- jwt -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.jsonwebtoken</groupId>
|
||
|
|
<artifactId>jjwt</artifactId>
|
||
|
|
<version>0.9.1</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
|
<version>3.8.1</version>
|
||
|
|
<configuration>
|
||
|
|
<source>17</source>
|
||
|
|
<target>17</target>
|
||
|
|
<annotationProcessorPaths>
|
||
|
|
<path>
|
||
|
|
<groupId>org.mapstruct</groupId>
|
||
|
|
<artifactId>mapstruct-processor</artifactId>
|
||
|
|
<version>1.5.3.Final</version>
|
||
|
|
</path>
|
||
|
|
<path>
|
||
|
|
<groupId>org.projectlombok</groupId>
|
||
|
|
<artifactId>lombok</artifactId>
|
||
|
|
<version>${lombok.version}</version>
|
||
|
|
</path>
|
||
|
|
<path>
|
||
|
|
<groupId>org.projectlombok</groupId>
|
||
|
|
<artifactId>lombok-mapstruct-binding</artifactId>
|
||
|
|
<version>0.2.0</version>
|
||
|
|
</path>
|
||
|
|
</annotationProcessorPaths>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.asciidoctor</groupId>
|
||
|
|
<artifactId>asciidoctor-maven-plugin</artifactId>
|
||
|
|
<version>2.2.1</version>
|
||
|
|
<executions>
|
||
|
|
<execution>
|
||
|
|
<id>generate-docs</id>
|
||
|
|
<phase>prepare-package</phase>
|
||
|
|
<goals>
|
||
|
|
<goal>process-asciidoc</goal>
|
||
|
|
</goals>
|
||
|
|
<configuration>
|
||
|
|
<backend>html</backend>
|
||
|
|
<doctype>book</doctype>
|
||
|
|
</configuration>
|
||
|
|
</execution>
|
||
|
|
</executions>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.restdocs</groupId>
|
||
|
|
<artifactId>spring-restdocs-asciidoctor</artifactId>
|
||
|
|
<version>${spring-restdocs.version}</version>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
|
<version>3.0.4</version>
|
||
|
|
<configuration>
|
||
|
|
<excludes>
|
||
|
|
<exclude>
|
||
|
|
<groupId>org.projectlombok</groupId>
|
||
|
|
<artifactId>lombok</artifactId>
|
||
|
|
</exclude>
|
||
|
|
</excludes>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
|
||
|
|
</project>
|