diff options
author | Fiete Ostkamp <Fiete.Ostkamp@telekom.de> | 2024-12-06 18:44:10 +0100 |
---|---|---|
committer | Fiete Ostkamp <Fiete.Ostkamp@telekom.de> | 2024-12-06 20:23:43 +0100 |
commit | 8b018d4f1c8a2dbc7bf68aa3275d6756b814cd0a (patch) | |
tree | 1ce6669d6a08a4790c6cc30d27bf7e23755fc4c8 /aai-schema-gen/pom.xml | |
parent | 0c54f901a01a12b555fe659cd2e297756c9b772e (diff) |
Add tracing to schema-service
- add tracing
- cleanup pom by removing not necessary dependencies
Issue-ID: AAI-4083
Change-Id: Ie491b8a6e20b0189473b88118f4310df8cdb4ac5
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Diffstat (limited to 'aai-schema-gen/pom.xml')
-rw-r--r-- | aai-schema-gen/pom.xml | 53 |
1 files changed, 9 insertions, 44 deletions
diff --git a/aai-schema-gen/pom.xml b/aai-schema-gen/pom.xml index 80a6440..71331ad 100644 --- a/aai-schema-gen/pom.xml +++ b/aai-schema-gen/pom.xml @@ -637,9 +637,15 @@ <artifactId>spring-webmvc</artifactId> </dependency> <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-test</artifactId> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>com.vaadin.external.google</groupId> + <artifactId>android-json</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.yaml</groupId> @@ -650,7 +656,6 @@ <dependency> <groupId>org.onap.aai.aai-common</groupId> <artifactId>aai-schema-ingest</artifactId> - <version>1.9.3</version> <scope>compile</scope> <exclusions> <exclusion> @@ -687,12 +692,10 @@ <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-yaml</artifactId> - <version>2.2.3</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> - <!-- <version>3.7</version> --> <scope>compile</scope> </dependency> <dependency> @@ -707,47 +710,9 @@ <scope>compile</scope> </dependency> <dependency> - <groupId>org.hamcrest</groupId> - <artifactId>java-hamcrest</artifactId> - <version>2.0.0.0</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.hamcrest</groupId> - <artifactId>hamcrest-core</artifactId> - <version>1.3</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.hamcrest</groupId> - <artifactId>hamcrest-junit</artifactId> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> - <version>4.11.0</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.junit.jupiter</groupId> - <artifactId>junit-jupiter-api</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.junit.jupiter</groupId> - <artifactId>junit-jupiter-engine</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.junit.jupiter</groupId> - <artifactId>junit-jupiter-params</artifactId> + <version>4.4.0</version> <scope>test</scope> </dependency> </dependencies> |