diff options
author | Dan Timoney <dtimoney@att.com> | 2023-06-19 16:05:33 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2023-08-10 14:48:32 -0400 |
commit | 6a7f13fa7e284cbec5b0743c10fdd33286aaf2ec (patch) | |
tree | 42fa7649ca8f912af8d47f35bad4b284369fae9d /pom.xml | |
parent | a76d3f0de616b542baea9360e80a921f5f028a78 (diff) |
Port to java 17
Update to java 17 / springboot 3 to align with OpenDaylight Argon.
Copied and ported CADI library from AAF
Issue-ID: CCSDK-3917
Signed-off-by: Dan Timoney <dtimoney@att.com>
Change-Id: Idecb0cf43c48ccbbc0c61bf4278b87a37f92a56e
Diffstat (limited to 'pom.xml')
-rwxr-xr-x | pom.xml | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -4,8 +4,8 @@ <parent> <groupId>org.onap.ccsdk.parent</groupId> - <artifactId>spring-boot-26-starter-parent</artifactId> - <version>2.5.4</version> + <artifactId>spring-boot-30-starter-parent</artifactId> + <version>2.6.0</version> <relativePath/> </parent> @@ -22,6 +22,7 @@ </organization> <modules> + <module>cadi</module> <module>services</module> <module>ms</module> </modules> @@ -50,6 +51,11 @@ <sonar.coverage.jacoco.xmlReportPaths>${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths> <jacoco.version>0.8.8</jacoco.version> <gson.version>2.9.0</gson.version> + <springfox.version>3.0.0</springfox.version> + <aaf.cadi.version>2.1.21</aaf.cadi.version> + <ccsdk.sli.core.version>1.7.0-SNAPSHOT</ccsdk.sli.core.version> + <maven.compiler.source>1.11</maven.compiler.source> + <maven.compiler.target>1.11</maven.compiler.target> </properties> <build> |