You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
2.0 KiB
XML
58 lines
2.0 KiB
XML
2 years ago
|
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<parent>
|
||
|
<artifactId>xymanager</artifactId>
|
||
|
<groupId>com.shxy</groupId>
|
||
|
<version>1.0.0</version>
|
||
|
</parent>
|
||
|
<groupId>com.shxy</groupId>
|
||
|
<artifactId>xymanager_admin</artifactId>
|
||
|
<version>1.0.0</version>
|
||
|
<name>xymanager_admin</name>
|
||
|
<description>Demo project for Spring Boot</description>
|
||
|
<properties>
|
||
|
<java.version>1.8</java.version>
|
||
|
</properties>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.shxy</groupId>
|
||
|
<artifactId>xymanager_framework</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.shxy</groupId>
|
||
|
<artifactId>xymanager_service</artifactId>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<mainClass>com.shxy.xymanager_admin.XymanagerAdminApplication</mainClass>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<goals>
|
||
|
<goal>repackage</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<source>1.8</source>
|
||
|
<target>1.8</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
<finalName>xymanager-admin</finalName>
|
||
|
|
||
|
</build>
|
||
|
</project>
|