summaryrefslogtreecommitdiffstats
path: root/aai-resources/pom.xml
diff options
context:
space:
mode:
authorLukasz Rajewski <lukasz.rajewski@t-mobile.pl>2023-11-07 16:21:42 +0000
committerGerrit Code Review <gerrit@onap.org>2023-11-07 16:21:42 +0000
commitd9abaa46bd2ef24e04b7e68b5d8f2151a9b1a4ed (patch)
treed2781b226870b4a9d3ced0f7c121974854ce78df /aai-resources/pom.xml
parent7b1baebc0dd9f75bcfe0e56796c5116a77c1e3aa (diff)
parent6c6d7d0f9ba9fbaa677cd7e9a9c4a19244a61c19 (diff)
Merge "Add spring-cloud-sleuth for tracing"
Diffstat (limited to 'aai-resources/pom.xml')
-rw-r--r--aai-resources/pom.xml19
1 files changed, 17 insertions, 2 deletions
diff --git a/aai-resources/pom.xml b/aai-resources/pom.xml
index 2bfd698..0451d24 100644
--- a/aai-resources/pom.xml
+++ b/aai-resources/pom.xml
@@ -99,8 +99,8 @@
<!-- Integration tests will be skipped by default. Could be enabled here or by -DskipITs=false-->
<skipITs>true</skipITs>
- <!-- https://mvnrepository.com/artifact/io.swagger/swagger-core -->
<swagger.version>1.6.8</swagger.version>
+ <spring-cloud.version>2020.0.2</spring-cloud.version>
</properties>
<profiles>
<!-- Docker profile to be used for building docker image and pushing to nexus -->
@@ -312,6 +312,14 @@
<artifactId>spring-boot-starter-hateoas</artifactId>
</dependency>
<dependency>
+ <groupId>org.springframework.cloud</groupId>
+ <artifactId>spring-cloud-starter-sleuth</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework.cloud</groupId>
+ <artifactId>spring-cloud-sleuth-zipkin</artifactId>
+ </dependency>
+ <dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-spring-legacy</artifactId>
<version>${micrometer-spring-legacy.version}</version>
@@ -713,6 +721,13 @@
<type>pom</type>
<scope>import</scope>
</dependency>
+ <dependency>
+ <groupId>org.springframework.cloud</groupId>
+ <artifactId>spring-cloud-dependencies</artifactId>
+ <version>${spring-cloud.version}</version>
+ <type>pom</type>
+ <scope>import</scope>
+ </dependency>
</dependencies>
</dependencyManagement>
<build>
@@ -984,7 +999,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
- <configuration combine.children="append">
+ <configuration>
<excludes>
<exclude>**/*WebSecurityConfig.*</exclude>
</excludes>