diff options
author | Fiete Ostkamp <Fiete.Ostkamp@telekom.de> | 2024-11-14 08:46:44 +0100 |
---|---|---|
committer | Fiete Ostkamp <Fiete.Ostkamp@telekom.de> | 2024-11-14 09:37:26 +0100 |
commit | 6c6abede7bb88986ea7ec9b81ffdc93c229c7324 (patch) | |
tree | ea56003c25d76e3a07794435e33c7c76c2504d85 /aai-queries/pom.xml | |
parent | 36873f891cbc4a5dd87b6377f3af0624b97bf1f5 (diff) |
- update aai-common dependency (1.9.4 -> 1.15.2)
- this also updates, among other things, spring boot (2.1.12 -> 2.6.15)
- use lombok to make code more terse
Issue-ID: AAI-4058
Change-Id: Ib4b90d360dc094721eaf82282c6ba0df767d18a9
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Diffstat (limited to 'aai-queries/pom.xml')
-rw-r--r-- | aai-queries/pom.xml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/aai-queries/pom.xml b/aai-queries/pom.xml index a42c60c..18ae75c 100644 --- a/aai-queries/pom.xml +++ b/aai-queries/pom.xml @@ -139,8 +139,14 @@ </dependency> <dependency> <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-test</artifactId> + <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>javax.xml.bind</groupId> @@ -150,12 +156,10 @@ <dependency> <groupId>org.eclipse.persistence</groupId> <artifactId>eclipselink</artifactId> - <version>3.0.0</version> </dependency> <dependency> <groupId>org.eclipse.persistence</groupId> <artifactId>org.eclipse.persistence.moxy</artifactId> - <version>3.0.0</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> |