Springboot3.0 对应常用的maven配置文件

时间:2025-03-18 08:37:48
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="/POM/4.0.0" xmlns:xsi="http:///2001/XMLSchema-instance" xsi:schemaLocation="/POM/4.0.0 /xsd/maven-4.0."> <modelVersion>4.0.0</modelVersion> <groupId></groupId> <artifactId>AccessControlSystem</artifactId> <packaging>pom</packaging> <version>1.0-SNAPSHOT</version> <modules> <module>ACS-auth</module> <module>ACS-gateway</module> <module>ACS-common</module> <module>ACS-admin</module> <module>ACS-demo</module> <module>ACS-face</module> </modules> <properties> <>17</> <>17</> </properties> <parent> <groupId></groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3.0.0</version> </parent> <dependencies> <dependency> <groupId></groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId></groupId> <artifactId>native-maven-plugin</artifactId></plugin> <plugin> <groupId></groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>