mirror of
https://github.com/1024-lab/smart-admin.git
synced 2025-09-04 03:36:32 +00:00
47 lines
1.4 KiB
XML
47 lines
1.4 KiB
XML
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
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>net.1024lab</groupId>
|
|
<artifactId>sa-parent</artifactId>
|
|
<version>3.0.0</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>sa-admin</artifactId>
|
|
<version>3.0.0</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>sa-admin</name>
|
|
<description>sa-admin project</description>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>net.1024lab</groupId>
|
|
<artifactId>sa-base</artifactId>
|
|
<version>3.0.0</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<configuration>
|
|
<mainClass>net.lab1024.sa.admin.AdminApplication</mainClass>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |