48 lines
1.5 KiB
XML
48 lines
1.5 KiB
XML
<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">
|
|
<parent>
|
|
<groupId>net.maku</groupId>
|
|
<artifactId>fast-boot</artifactId>
|
|
<version>1.0.0</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>fast-server</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>net.maku</groupId>
|
|
<artifactId>fast-boot-system</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
<artifactId>knife4j-springdoc-ui</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>${project.artifactId}</finalName>
|
|
<plugins>
|
|
<!-- <plugin>-->
|
|
<!-- <groupId>org.apache.maven.plugins</groupId>-->
|
|
<!-- <artifactId>maven-compiler-plugin</artifactId>-->
|
|
<!-- <version>3.8.1</version>-->
|
|
<!-- <configuration>-->
|
|
<!-- <source>${java.version}</source>-->
|
|
<!-- <target>${java.version}</target>-->
|
|
<!-- <annotationProcessorPaths>-->
|
|
<!-- <path>-->
|
|
<!-- <groupId>org.mapstruct</groupId>-->
|
|
<!-- <artifactId>mapstruct-processor</artifactId>-->
|
|
<!-- <version>${mapstruct.version}</version>-->
|
|
<!-- </path>-->
|
|
<!-- </annotationProcessorPaths>-->
|
|
<!-- </configuration>-->
|
|
<!-- </plugin>-->
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |