You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
2.9 KiB
80 lines
2.9 KiB
<?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> |
|
<groupId>com.depsystem</groupId> |
|
<artifactId>app</artifactId> |
|
<version>0.0.1-SNAPSHOT</version> |
|
<relativePath>../pom.xml</relativePath> |
|
</parent> |
|
<artifactId>app-start</artifactId> |
|
<name>app-start</name> |
|
<description>入口模块,引导工程启动以及基础配置</description> |
|
<dependencies> |
|
<dependency> |
|
<groupId>com.depsystem</groupId> |
|
<artifactId>app-service</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.depsystem</groupId> |
|
<artifactId>app-web</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-tx</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-test</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-autoconfigure</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot</artifactId> |
|
<version>3.0.0</version> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>3.8.1</version> |
|
<configuration> |
|
<source>17</source> |
|
<target>17</target> |
|
<encoding>UTF-8</encoding> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
<version>3.0.0</version> |
|
<configuration> |
|
<mainClass>com.depsystem.app.AppApplication</mainClass> |
|
<excludes> |
|
<exclude> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok</artifactId> |
|
</exclude> |
|
</excludes> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<id>repackage</id> |
|
<goals> |
|
<goal>repackage</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
</project>
|
|
|