75 lines
1.8 KiB
XML
75 lines
1.8 KiB
XML
<?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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>com.afe.g3fo</groupId>
|
|
<artifactId>g3fo-admin</artifactId>
|
|
<version>${revision}</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>g3fo-admin-service</name>
|
|
<artifactId>g3fo-admin-service</artifactId>
|
|
<description>g3fo-admin-service</description>
|
|
|
|
<dependencies>
|
|
|
|
<!-- g3fo-api -->
|
|
<dependency>
|
|
<groupId>com.afe.g3fo</groupId>
|
|
<artifactId>g3fo-admin-api</artifactId>
|
|
</dependency>
|
|
|
|
<!-- framework -->
|
|
<dependency>
|
|
<groupId>com.afe.g3fo</groupId>
|
|
<artifactId>g3fo-framework-service</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>p6spy</groupId>
|
|
<artifactId>p6spy</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.afe.g3fo</groupId>
|
|
<artifactId>g3fo-framework-service</artifactId>
|
|
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<version>3.0.6</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|