From 8c23129be8bef8f2113be25eca424f87eb05c889 Mon Sep 17 00:00:00 2001 From: Oleg Mitsura Date: Thu, 20 Aug 2020 09:47:26 -0400 Subject: JDK11 upgrade Issue-ID: CCSDK-1870 commit2: update surefire plugin to 3.0.0-M5. Need at least M3 for JDK11. S Still TODO: what to do about the spring-boot-parent. it may need a bump as well. commit3: update parent with surefire 3.0.0-M5 commit4: another surefire version update + failsafe version update. commit5: uncomment surefire def'n in parent pom. It may need to be redefined... commit6: update to parent 2.0.1-SNAPSHOT commits... rebasing/minorfixes commit14: disabling HealthCheckApplicationTests test commit19: Kapil bugfixes: Jsonfiles "isForce" replaces (incorrect) "force"; bumps kafka scala version to 2_13 commit20: fixe back kafka scala version to 2_11 commit25: reverted + applied patches for 2_13 (due to springboot parent update) + 'application' pom to use forCount=1 and reuseForks=false and reverted scanUatEmpoweredBlueprints modification in BluepritnsAcceptanceTest commit30: rebase commit31: SDCListener tests fixes. JMockit updated from 1.19 to 1.49. Since 1.42, need to do these changes https://jmockit.github.io/tutorial/Introduction.html#runningTests commit32: Dockerfiles cleanup. adduser/group params are different from Alpine. commit33: Dockerfile for SDClistener typo commit34: Addressed Dan's comments. commit35: Image was changed to 1.0.1 (which will be built soon), and the updated base image will already have 'onap' user and group, hence the adduser/group wouldn't be needed. commit36: rebase commit37: bumped up BP proc maven-surefire-plugin Xmx Signed-off-by: Oleg Mitsura Change-Id: I3d864d500150e7d81bb2ce73333f2db67c004e93 --- ms/sdclistener/application/pom.xml | 30 +--------------------- .../cds/sdclistener/SdcListenerClientTest.java | 3 --- .../distribution/src/main/docker/Dockerfile | 13 ++++------ .../distribution/src/main/docker/startService.sh | 0 ms/sdclistener/parent/pom.xml | 14 ++++++---- ms/sdclistener/pom.xml | 3 --- 6 files changed, 15 insertions(+), 48 deletions(-) mode change 100644 => 100755 ms/sdclistener/distribution/src/main/docker/startService.sh (limited to 'ms/sdclistener') diff --git a/ms/sdclistener/application/pom.xml b/ms/sdclistener/application/pom.xml index a44816af8..6f5fac107 100644 --- a/ms/sdclistener/application/pom.xml +++ b/ms/sdclistener/application/pom.xml @@ -75,6 +75,7 @@ org.jmockit jmockit + ${jmockit.version} test @@ -127,33 +128,4 @@ logback-classic - - - - - maven-surefire-plugin - - - default-test - test - - test - - - -Djdk.attach.allowAttachSelf=true ${surefireArgLine} - - **/IT*.java - - - - - - ${surefireArgLine} - - **/IT*.java - - - - - diff --git a/ms/sdclistener/application/src/test/java/org/onap/ccsdk/cds/sdclistener/SdcListenerClientTest.java b/ms/sdclistener/application/src/test/java/org/onap/ccsdk/cds/sdclistener/SdcListenerClientTest.java index e08b6134c..d27d1c491 100644 --- a/ms/sdclistener/application/src/test/java/org/onap/ccsdk/cds/sdclistener/SdcListenerClientTest.java +++ b/ms/sdclistener/application/src/test/java/org/onap/ccsdk/cds/sdclistener/SdcListenerClientTest.java @@ -22,9 +22,7 @@ import mockit.Mock; import mockit.MockUp; import mockit.Tested; import mockit.VerificationsInOrder; -import mockit.integration.junit4.JMockit; import org.junit.Test; -import org.junit.runner.RunWith; import org.onap.ccsdk.cds.sdclistener.client.SdcListenerClient; import org.onap.ccsdk.cds.sdclistener.dto.SdcListenerDto; import org.onap.ccsdk.cds.sdclistener.exceptions.SdcListenerException; @@ -34,7 +32,6 @@ import org.onap.sdc.impl.DistributionClientFactory; import org.onap.sdc.impl.DistributionClientResultImpl; import org.onap.sdc.utils.DistributionActionResultEnum; -@RunWith(JMockit.class) public class SdcListenerClientTest { @Tested diff --git a/ms/sdclistener/distribution/src/main/docker/Dockerfile b/ms/sdclistener/distribution/src/main/docker/Dockerfile index 41622fae1..b5b74e11e 100755 --- a/ms/sdclistener/distribution/src/main/docker/Dockerfile +++ b/ms/sdclistener/distribution/src/main/docker/Dockerfile @@ -1,19 +1,16 @@ -FROM openjdk:8-jdk-alpine +FROM onap/ccsdk-alpine-j11-image:1.0.1 -RUN addgroup -S -g 1000 onap && adduser -S onap -u 1000 -G onap # add entrypoint COPY startService.sh /startService.sh -RUN chown onap:onap /startService.sh -RUN chmod 751 /startService.sh +RUN chown onap:onap /startService.sh && chmod 755 /startService.sh # add application COPY @project.build.finalName@-@assembly.id@.tar.gz /source.tar.gz RUN tar -xzf /source.tar.gz -C /tmp \ && cp -rf /tmp/@project.build.finalName@/opt / \ && rm -rf /source.tar.gz \ - && rm -rf /tmp/@project.build.finalName@ - -RUN mkdir -p /opt/app/onap/cds-sdc-listener -RUN chown onap:onap /opt -R + && rm -rf /tmp/@project.build.finalName@ \ + && mkdir -p /opt/app/onap/cds-sdc-listener \ + && chown onap:onap /opt -R USER onap ENTRYPOINT /startService.sh diff --git a/ms/sdclistener/distribution/src/main/docker/startService.sh b/ms/sdclistener/distribution/src/main/docker/startService.sh old mode 100644 new mode 100755 diff --git a/ms/sdclistener/parent/pom.xml b/ms/sdclistener/parent/pom.xml index ea67d1b95..d6aed85a6 100755 --- a/ms/sdclistener/parent/pom.xml +++ b/ms/sdclistener/parent/pom.xml @@ -42,7 +42,7 @@ 1.1.5 5.5.1 1.4.0 - 1.19 + 1.49 3.2.6.RELEASE @@ -170,11 +170,15 @@ org.apache.maven.plugins - maven-compiler-plugin - 3.5.1 + maven-surefire-plugin + ${maven-surefire-plugin.version} - ${maven.compiler.source} - ${maven.compiler.target} + + -javaagent:"${settings.localRepository}"/org/jmockit/jmockit/${jmockit.version}/jmockit-${jmockit.version}.jar + + + **/IT*.java + diff --git a/ms/sdclistener/pom.xml b/ms/sdclistener/pom.xml index d89eb14a3..bed1056ab 100644 --- a/ms/sdclistener/pom.xml +++ b/ms/sdclistener/pom.xml @@ -43,9 +43,6 @@ UTF-8 yyyyMMdd'T'HHmmss'Z' ${maven.build.timestamp} - 1.8 - 1.8 - 1.8 ${project.version} -- cgit 1.2.3-korg