2022-08-24 11:07:46 +08:00
|
|
|
<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>
|
2022-08-31 11:22:15 +08:00
|
|
|
<artifactId>maku-boot</artifactId>
|
2022-08-24 11:07:46 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2022-08-31 11:22:15 +08:00
|
|
|
<artifactId>maku-server</artifactId>
|
2022-08-24 11:07:46 +08:00
|
|
|
<packaging>jar</packaging>
|
2022-04-22 15:26:39 +08:00
|
|
|
|
2022-08-24 11:07:46 +08:00
|
|
|
<dependencies>
|
2022-08-31 11:22:15 +08:00
|
|
|
<dependency>
|
2022-08-24 11:07:46 +08:00
|
|
|
<groupId>net.maku</groupId>
|
2022-08-31 11:22:15 +08:00
|
|
|
<artifactId>maku-boot-system</artifactId>
|
2022-08-24 11:07:46 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.maku</groupId>
|
2022-08-31 11:22:15 +08:00
|
|
|
<artifactId>maku-boot-new</artifactId>
|
2022-08-24 11:07:46 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
2022-09-01 00:10:45 +08:00
|
|
|
<!-- <dependency>-->
|
|
|
|
<!-- <groupId>net.maku</groupId>-->
|
|
|
|
<!-- <artifactId>maku-boot-quartz</artifactId>-->
|
|
|
|
<!-- <version>${revision}</version>-->
|
|
|
|
<!-- </dependency>-->
|
2022-09-01 12:09:26 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.maku</groupId>
|
|
|
|
<artifactId>maku-boot-message</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
2022-08-24 11:07:46 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
|
|
<artifactId>knife4j-springdoc-ui</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2022-04-22 15:26:39 +08:00
|
|
|
|
2022-08-24 11:07:46 +08:00
|
|
|
<build>
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2022-04-22 15:26:39 +08:00
|
|
|
</project>
|