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.
121 lines
4.3 KiB
XML
121 lines
4.3 KiB
XML
1 month 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>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||
|
<version>2.7.16</version>
|
||
|
</parent>
|
||
|
|
||
|
<groupId>com.htfp.service</groupId>
|
||
|
<artifactId>usm</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
<packaging>pom</packaging>
|
||
|
<name>htfp-uav-state-manager</name>
|
||
|
<description>htfp-uav-state-manager</description>
|
||
|
|
||
|
<properties>
|
||
|
<java.version>1.8</java.version>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
|
<spring-boot.version>2.7.6</spring-boot.version>
|
||
|
</properties>
|
||
|
|
||
|
|
||
|
<modules>
|
||
|
<module>usm-app</module>
|
||
|
<module>usm-dao</module>
|
||
|
<module>usm-common</module>
|
||
|
<module>usm-biz</module>
|
||
|
</modules>
|
||
|
|
||
|
<!-- 依赖版本声明, 子项目需引入但无需指定版本-->
|
||
|
<dependencyManagement>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-dependencies</artifactId>
|
||
|
<version>${spring-boot.version}</version>
|
||
|
<!-- 合并导入spring-boot-dependencies的dependencies-->
|
||
|
<type>pom</type>
|
||
|
<scope>import</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.mybatis.spring.boot</groupId>
|
||
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
||
|
<version>2.3.0</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.htfp.service</groupId>
|
||
|
<artifactId>usm-common</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.htfp.service</groupId>
|
||
|
<artifactId>usm-dao</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.htfp.service</groupId>
|
||
|
<artifactId>usm-biz</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</dependencyManagement>
|
||
|
|
||
|
<!--公共依赖引入, 子项目直接继承,无需引入-->
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.junit.jupiter</groupId>
|
||
|
<artifactId>junit-jupiter-api</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.8.1</version>
|
||
|
<configuration>
|
||
|
<source>1.8</source>
|
||
|
<target>1.8</target>
|
||
|
<encoding>UTF-8</encoding>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
<version>${spring-boot.version}</version>
|
||
|
<configuration>
|
||
|
<mainClass>com.htfp.service.ssm.HtfpUavStateManagerApplication</mainClass>
|
||
|
<skip>true</skip>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>repackage</id>
|
||
|
<goals>
|
||
|
<goal>repackage</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
</project>
|