56 lines
1.8 KiB
XML
56 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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.agileboot</groupId>
|
|
<artifactId>agileboot</artifactId>
|
|
<version>1.0.0</version>
|
|
</parent>
|
|
|
|
<artifactId>wol-auth</artifactId>
|
|
|
|
<properties>
|
|
<application.name>wol-auth</application.name>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.agileboot</groupId>
|
|
<artifactId>wol-common-nacos</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.agileboot</groupId>
|
|
<artifactId>wol-common-satoken</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.agileboot</groupId>
|
|
<artifactId>wol-common-redis</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.agileboot</groupId>
|
|
<artifactId>agileboot-system-base</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>${project.artifactId}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<version>${spring.boot.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|