Mercurial > hg > SpringPlayground
diff spring-jms-playground/pom.xml @ 18:8504317b9a09
Erweiterung um Sleuth, manuelle Konfiguration von Spring
author | Dirk Olmes <dirk.olmes@codedo.de> |
---|---|
date | Thu, 17 Sep 2020 09:03:11 +0200 |
parents | ad77abd85976 |
children |
line wrap: on
line diff
--- a/spring-jms-playground/pom.xml Thu Sep 10 11:18:13 2020 +0200 +++ b/spring-jms-playground/pom.xml Thu Sep 17 09:03:11 2020 +0200 @@ -2,12 +2,6 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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.16.RELEASE</version> - <relativePath/> - </parent> <groupId>de.comline</groupId> <artifactId>spring-jms-playground</artifactId> <version>0.0.1-SNAPSHOT</version> @@ -37,11 +31,34 @@ </plugins> </build> + <dependencyManagement> + <dependencies> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-parent</artifactId> + <version>2.1.16.RELEASE</version> + <type>pom</type> + <scope>import</scope> + </dependency> + <dependency> + <groupId>org.springframework.cloud</groupId> + <artifactId>spring-cloud-dependencies</artifactId> + <version>Greenwich.SR6</version> + <type>pom</type> + <scope>import</scope> + </dependency> + </dependencies> + </dependencyManagement> + <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-activemq</artifactId> </dependency> + <dependency> + <groupId>org.springframework.cloud</groupId> + <artifactId>spring-cloud-starter-sleuth</artifactId> + </dependency> <dependency> <groupId>org.junit.jupiter</groupId>