BAEL-579 Added missing dependency versions.
This commit is contained in:
parent
bf7829d539
commit
67dc0bd2e6
@ -1,78 +1,81 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?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"
|
<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">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<groupId>com.baeldung.spring.cloud</groupId>
|
<groupId>com.baeldung.spring.cloud</groupId>
|
||||||
<artifactId>spring-cloud-config-server</artifactId>
|
<artifactId>spring-cloud-config-server</artifactId>
|
||||||
<version>0.0.1-SNAPSHOT</version>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<name>spring-cloud-config-server</name>
|
<name>spring-cloud-config-server</name>
|
||||||
<description>Demo Spring Cloud Config Server</description>
|
<description>Demo Spring Cloud Config Server</description>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-parent</artifactId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||||||
<version>1.5.4.RELEASE</version>
|
<version>1.5.4.RELEASE</version>
|
||||||
<relativePath /> <!-- lookup parent from repository -->
|
</parent>
|
||||||
</parent>
|
|
||||||
|
<properties>
|
||||||
<properties>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
<java.version>1.8</java.version>
|
||||||
<java.version>1.8</java.version>
|
<spring-cloud.version>Dalston.SR1</spring-cloud.version>
|
||||||
<spring-cloud.version>Dalston.SR1</spring-cloud.version>
|
</properties>
|
||||||
</properties>
|
|
||||||
|
<dependencies>
|
||||||
<dependencies>
|
<dependency>
|
||||||
<dependency>
|
<groupId>org.springframework.cloud</groupId>
|
||||||
<groupId>org.springframework.cloud</groupId>
|
<artifactId>spring-cloud-config-server</artifactId>
|
||||||
<artifactId>spring-cloud-config-server</artifactId>
|
<version>1.3.1.RELEASE</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-security</artifactId>
|
<artifactId>spring-boot-starter-security</artifactId>
|
||||||
</dependency>
|
<version>1.5.4.RELEASE</version>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
|
||||||
<groupId>org.springframework.boot</groupId>
|
<dependency>
|
||||||
<artifactId>spring-boot-starter-test</artifactId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<scope>test</scope>
|
<artifactId>spring-boot-starter-test</artifactId>
|
||||||
</dependency>
|
<version>1.5.4.RELEASE</version>
|
||||||
|
<scope>test</scope>
|
||||||
<dependency>
|
</dependency>
|
||||||
<groupId>org.springframework.cloud</groupId>
|
|
||||||
<artifactId>spring-cloud-config-monitor</artifactId>
|
<dependency>
|
||||||
</dependency>
|
<groupId>org.springframework.cloud</groupId>
|
||||||
|
<artifactId>spring-cloud-config-monitor</artifactId>
|
||||||
<dependency>
|
<version>1.3.1.RELEASE</version>
|
||||||
<groupId>org.springframework.cloud</groupId>
|
</dependency>
|
||||||
<artifactId>spring-cloud-starter-stream-rabbit</artifactId>
|
|
||||||
</dependency>
|
<dependency>
|
||||||
</dependencies>
|
<groupId>org.springframework.cloud</groupId>
|
||||||
|
<artifactId>spring-cloud-starter-stream-rabbit</artifactId>
|
||||||
<dependencyManagement>
|
<version>1.2.1.RELEASE</version>
|
||||||
<dependencies>
|
</dependency>
|
||||||
<dependency>
|
</dependencies>
|
||||||
<groupId>org.springframework.cloud</groupId>
|
|
||||||
<artifactId>spring-cloud-dependencies</artifactId>
|
<dependencyManagement>
|
||||||
<version>${spring-cloud.version}</version>
|
<dependencies>
|
||||||
<type>pom</type>
|
<dependency>
|
||||||
<scope>import</scope>
|
<groupId>org.springframework.cloud</groupId>
|
||||||
</dependency>
|
<artifactId>spring-cloud-dependencies</artifactId>
|
||||||
</dependencies>
|
<version>${spring-cloud.version}</version>
|
||||||
</dependencyManagement>
|
<type>pom</type>
|
||||||
|
<scope>import</scope>
|
||||||
<build>
|
</dependency>
|
||||||
<plugins>
|
</dependencies>
|
||||||
<plugin>
|
</dependencyManagement>
|
||||||
<groupId>org.springframework.boot</groupId>
|
|
||||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
<build>
|
||||||
</plugin>
|
<plugins>
|
||||||
</plugins>
|
<plugin>
|
||||||
</build>
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
|
</plugin>
|
||||||
</project>
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
</project>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user