2019-10-31 21:43:47 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2021-05-14 08:13:24 -04:00
|
|
|
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">
|
2019-10-31 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>spring-cloud-archaius</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<name>spring-cloud-archaius</name>
|
|
|
|
<packaging>pom</packaging>
|
2019-12-05 09:56:52 -05:00
|
|
|
<description>Spring Cloud Archaius Pom parent</description>
|
2019-10-31 21:43:47 -04:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung.spring.cloud</groupId>
|
2022-05-29 10:02:17 -04:00
|
|
|
<artifactId>spring-cloud-modules</artifactId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<modules>
|
2022-12-08 08:28:09 -05:00
|
|
|
<module>spring-cloud-archaius-additionalsources</module>
|
|
|
|
<module>spring-cloud-archaius-basic-config</module>
|
|
|
|
<module>spring-cloud-archaius-dynamodb-config</module>
|
|
|
|
<module>spring-cloud-archaius-extra-configs</module>
|
|
|
|
<module>spring-cloud-archaius-jdbc-config</module>
|
|
|
|
<module>spring-cloud-archaius-zookeeper-config</module>
|
2019-10-31 21:43:47 -04:00
|
|
|
</modules>
|
|
|
|
|
2019-12-05 09:56:52 -05:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-netflix</artifactId>
|
|
|
|
<version>${spring-cloud-dependencies.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-netflix-archaius</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.platform</groupId>
|
|
|
|
<artifactId>junit-platform-runner</artifactId>
|
2021-10-29 00:07:04 -04:00
|
|
|
<version>${junit-platform.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
2021-06-25 15:50:37 -04:00
|
|
|
<spring-cloud-dependencies.version>2.0.3.RELEASE</spring-cloud-dependencies.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</properties>
|
2021-05-14 08:13:24 -04:00
|
|
|
|
|
|
|
</project>
|