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.
33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
|
2 years 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 http://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.1.3.RELEASE</version>
|
||
|
|
<relativePath/> <!-- lookup parent from repository -->
|
||
|
|
</parent>
|
||
|
|
<groupId>com.springcloud</groupId>
|
||
|
|
<artifactId>springcloud-example</artifactId>
|
||
|
|
<version>v1.0.0</version>
|
||
|
|
<name>springcloud-example</name>
|
||
|
|
<description>Demo project for Spring Boot</description>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<java.version>1.8</java.version>
|
||
|
|
<spring-cloud.version>Greenwich.RELEASE</spring-cloud.version>
|
||
|
|
</properties>
|
||
|
|
|
||
|
|
<modules>
|
||
|
|
<module>eureka-server</module>
|
||
|
|
<module>service-order</module>
|
||
|
|
<module>service-user</module>
|
||
|
|
<module>service-consumer1</module>
|
||
|
|
<module>service-consumer2</module>
|
||
|
|
<module>stream-consumer</module>
|
||
|
|
<module>admin-server</module>
|
||
|
|
</modules>
|
||
|
|
|
||
|
|
</project>
|