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 /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 'pom.xml')
-rw-r--r-- | pom.xml | 18 |
1 files changed, 16 insertions, 2 deletions
@@ -26,7 +26,7 @@ <parent> <groupId>org.onap.aai.aai-common</groupId> <artifactId>aai-parent</artifactId> - <version>1.9.4</version> + <version>1.15.2</version> </parent> <groupId>org.onap.aai.schema-service</groupId> <artifactId>schema-service</artifactId> @@ -45,7 +45,7 @@ Nexus Proxy Properties and Snapshot Locations Ideally this can be overwritten at runtime per internal environment specific values at runtime --> - <aai.common.version>1.9.4</aai.common.version> + <aai.common.version>1.15.2</aai.common.version> <nexusproxy>https://nexus.onap.org</nexusproxy> <site.path>/content/sites/site/org/onap/aai/resources/${project.artifactId}/${project.version}</site.path> <release.path>/content/repositories/releases/</release.path> @@ -54,6 +54,20 @@ <aai.project.version>${project.version}</aai.project.version> <checkstyle.skip>false</checkstyle.skip> </properties> + <dependencyManagement> + <dependencies> + <dependency> + <groupId>org.eclipse.persistence</groupId> + <artifactId>eclipselink</artifactId> + <version>2.7.15</version> + </dependency> + <dependency> + <groupId>org.eclipse.persistence</groupId> + <artifactId>org.eclipse.persistence.moxy</artifactId> + <version>2.7.15</version> + </dependency> + </dependencies> + </dependencyManagement> <build> <pluginManagement> <plugins> |