40 lines
1.3 KiB
XML
40 lines
1.3 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
||
|
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>
|
||
|
<groupId>com.baeldung.spring.cloud</groupId>
|
||
|
<artifactId>spring-cloud-config</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<name>spring-cloud-config</name>
|
||
|
<packaging>pom</packaging>
|
||
|
|
||
|
<parent>
|
||
|
<artifactId>parent-boot-1</artifactId>
|
||
|
<groupId>com.baeldung</groupId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
<relativePath>../../parent-boot-1</relativePath>
|
||
|
</parent>
|
||
|
|
||
|
<modules>
|
||
|
<module>server</module>
|
||
|
<module>client</module>
|
||
|
</modules>
|
||
|
|
||
|
<dependencyManagement>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.cloud</groupId>
|
||
|
<artifactId>spring-cloud-dependencies</artifactId>
|
||
|
<version>${spring-cloud-dependencies.version}</version>
|
||
|
<type>pom</type>
|
||
|
<scope>import</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</dependencyManagement>
|
||
|
|
||
|
<properties>
|
||
|
<spring-cloud-dependencies.version>Brixton.SR7</spring-cloud-dependencies.version>
|
||
|
</properties>
|
||
|
|
||
|
</project>
|