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-schema-gen/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-schema-gen/pom.xml')
-rw-r--r-- | aai-schema-gen/pom.xml | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/aai-schema-gen/pom.xml b/aai-schema-gen/pom.xml index b7723e7..f4ee9af 100644 --- a/aai-schema-gen/pom.xml +++ b/aai-schema-gen/pom.xml @@ -601,24 +601,20 @@ </profiles> <dependencies> <dependency> - <groupId>javax.annotation</groupId> - <artifactId>javax.annotation-api</artifactId> - <scope>compile</scope> + <groupId>org.glassfish.jaxb</groupId> + <artifactId>jaxb-runtime</artifactId> </dependency> <dependency> - <groupId>javax.xml.bind</groupId> - <artifactId>jaxb-api</artifactId> - <version>2.3.0</version> + <groupId>jakarta.xml.bind</groupId> + <artifactId>jakarta.xml.bind-api</artifactId> </dependency> <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.springframework</groupId> @@ -696,10 +692,15 @@ <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> - <version>3.7</version> + <!-- <version>3.7</version> --> <scope>compile</scope> </dependency> <dependency> + <groupId>commons-lang</groupId> + <artifactId>commons-lang</artifactId> + <version>2.6</version> + </dependency> + <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-text</artifactId> <version>1.2</version> |