70 lines
1.8 KiB
XML
70 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>top.rayc</groupId>
|
|
<artifactId>ray</artifactId>
|
|
<version>0.0.1</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>ray-admin</artifactId>
|
|
<version>0.0.1</version>
|
|
<packaging>jar</packaging>
|
|
<name>ray-admin</name>
|
|
<description>ray-admin</description>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>top.rayc</groupId>
|
|
<artifactId>ray-infrastructure-utility</artifactId>
|
|
<version>0.0.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>top.rayc</groupId>
|
|
<artifactId>ray-user</artifactId>
|
|
<version>0.0.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>top.rayc</groupId>
|
|
<artifactId>ray-file</artifactId>
|
|
<version>0.0.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<version>3.1.2</version>
|
|
<configuration>
|
|
<mainClass>top.rayc.Application</mainClass>
|
|
<!-- <excludes>
|
|
<exclude>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
</exclude>
|
|
</excludes> -->
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |