Files
learning-nexus/spring-cloud-demo/pom.xml
2025-05-08 18:02:47 +08:00

35 lines
988 B
XML

<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.mangmang</groupId>
<artifactId>learning-nexus</artifactId>
<version>1.0.0</version>
</parent>
<name>spring-cloud-demo</name>
<artifactId>spring-cloud-demo</artifactId>
<packaging>pom</packaging>
<modules>
<module>eureka-server</module>
<module>config-server</module>
<module>user-service</module>
<module>order-service</module>
<module>gateway-service</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>