diff options
author | Dan Timoney <dtimoney@att.com> | 2023-04-12 15:06:31 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2023-04-12 15:06:31 -0400 |
commit | f10722ecdd3c1da67548ab267f9a7b5e0e19b162 (patch) | |
tree | 1f26379ccc443bd6b25a08ffc2f6a1b12068d472 | |
parent | d8843d601e577f19fcf89f9ea32a715fc08610a9 (diff) |
Fix code coverage issue in ccsdk/apps
Sonar build for ccsdk/apps shows errors due to use of an old jacoco
version that does not support Java 17. Upgraded jacoco to version 0.8.8
to correct this error.
Issue-ID: CCSDK-3888
Signed-off-by: Dan Timoney <dtimoney@att.com>
Change-Id: I60062e42127d9612392364dc1bc9557aa34a0137
-rwxr-xr-x | pom.xml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -48,7 +48,7 @@ That issue has been fixed in 0.8.3 , so we override the default ONAP version here to pick up that fix --> <sonar.coverage.jacoco.xmlReportPaths>${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths> - <jacoco.version>0.8.3</jacoco.version> + <jacoco.version>0.8.8</jacoco.version> <gson.version>2.9.0</gson.version> </properties> |