From: Yoo, Brian (by703c) Date: Fri, 22 Jan 2021 18:50:01 +0000 (-0500) Subject: Add java 11 code support X-Git-Tag: 1.8.4^0 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=a9fee2cb1c991ce478e48ecc749ded2bc55181e2;p=aai%2Fschema-service.git Add java 11 code support Issue-ID: AAI-3009 Change-Id: Ic65c49e6071f240ec9fe583fa939cc965f928fc9 Signed-off-by: Yoo, Brian (by703c) Signed-off-by: Harish Venkata Kajur --- diff --git a/aai-queries/pom.xml b/aai-queries/pom.xml index 491e9ca..b7d7cf0 100644 --- a/aai-queries/pom.xml +++ b/aai-queries/pom.xml @@ -125,6 +125,21 @@ spring-boot-test test + + javax.xml.bind + jaxb-api + 2.3.0 + + + org.eclipse.persistence + eclipselink + 3.0.0 + + + org.eclipse.persistence + org.eclipse.persistence.moxy + 3.0.0 + diff --git a/aai-schema-gen/pom.xml b/aai-schema-gen/pom.xml index 16acc81..a4217f6 100644 --- a/aai-schema-gen/pom.xml +++ b/aai-schema-gen/pom.xml @@ -599,8 +599,27 @@ - + + javax.annotation + javax.annotation-api + compile + + + javax.xml.bind + jaxb-api + 2.3.0 + + + org.eclipse.persistence + eclipselink + 3.0.0 + + + org.eclipse.persistence + org.eclipse.persistence.moxy + 3.0.0 + org.springframework spring-context diff --git a/aai-schema-service/pom.xml b/aai-schema-service/pom.xml index 56410a5..8bcd2d4 100644 --- a/aai-schema-service/pom.xml +++ b/aai-schema-service/pom.xml @@ -50,7 +50,7 @@ onap alpine - 1.6.0 + 1.8.1 true @@ -161,7 +161,7 @@ generate-images - package + verify build @@ -269,6 +269,11 @@ + + jakarta.xml.bind + jakarta.xml.bind-api + 3.0.0 + javax.annotation javax.annotation-api @@ -339,14 +344,17 @@ javax.xml.bind jaxb-api + 2.3.0 org.eclipse.persistence eclipselink + 3.0.0 org.eclipse.persistence org.eclipse.persistence.moxy + 3.0.0 compile @@ -626,6 +634,45 @@ + + copy-fat-jar + + post-integration-test + + copy-resources + + + ${aai.build.directory}/lib/ + + + ${project.build.directory}/ + + ${project.artifactId}-${project.version}.jar + + false + + + + diff --git a/aai-schema-service/src/main/docker/Dockerfile b/aai-schema-service/src/main/docker/Dockerfile index 73cdfd7..6efa8d1 100644 --- a/aai-schema-service/src/main/docker/Dockerfile +++ b/aai-schema-service/src/main/docker/Dockerfile @@ -1,28 +1,30 @@ FROM @aai.docker.namespace@/aai-common-@aai.base.image@:@aai.base.image.version@ -RUN mkdir -p /opt/aaihome/aaiadmin /opt/aai/logroot/AAI-SCHEMA-SERVICE /opt/app/aai-schema-service/logs/gc +# Add the proper files into the docker image from your build +WORKDIR /opt/app/aai-schema-service -VOLUME /opt/aai/logroot/AAI-SS -VOLUME /tmp -VOLUME /opt/tools +# Expose the ports for outside linux to use +# 8447 is the important one to be used +EXPOSE 8447 HEALTHCHECK --interval=40s --timeout=10s --retries=3 CMD nc -z -v localhost 8452 || exit 1 -RUN groupadd aaiadmin -g 1000 +ENTRYPOINT ["/sbin/tini", "--", "/bin/bash", "/opt/app/aai-schema-service/docker-entrypoint.sh"] -RUN adduser -u 1000 -h /opt/aaihome/aaiadmin -S -D -G aaiadmin -s /bin/bash aaiadmin +VOLUME /tmp +VOLUME /opt/tools -# Add the proper files into the docker image from your build -WORKDIR /opt/app/aai-schema-service +USER root -RUN chown -R aaiadmin:aaiadmin /opt/app/aai-schema-service /etc/profile.d /opt/aai/logroot/AAI-SS /opt/app /opt/aai/logroot /opt/app/aai-schema-service/logs/gc +COPY --chown=aaiadmin:aaiadmin /maven/aai-schema-service/ /opt/app/aai-schema-service -COPY --chown=aaiadmin:aaiadmin /maven/aai-schema-service/ . +RUN mkdir -p /opt/aaihome/aaiadmin /opt/aai/logroot/AAI-SS && \ + chown -R aaiadmin:aaiadmin /opt/aaihome/aaiadmin /opt/aai/logroot/AAI-SS && \ + chmod 777 /opt/app/aai-schema-service /opt/app/aai-schema-service/resources/etc/auth -USER aaiadmin ENV AAI_BUILD_VERSION @aai.docker.version@ -# Expose the ports for outside linux to use -# 8452 is the important one to be used -EXPOSE 8452 -ENTRYPOINT ["/bin/bash", "/opt/app/aai-schema-service/docker-entrypoint.sh"] + +WORKDIR /opt/app/aai-schema-service + +USER aaiadmin diff --git a/aai-schema-service/src/main/docker/docker-entrypoint.sh b/aai-schema-service/src/main/docker/docker-entrypoint.sh index 6d1161d..1f33bdd 100644 --- a/aai-schema-service/src/main/docker/docker-entrypoint.sh +++ b/aai-schema-service/src/main/docker/docker-entrypoint.sh @@ -18,87 +18,56 @@ # ============LICENSE_END========================================================= ### -APP_HOME=$(pwd); +APP_HOME=/opt/app/aai-schema-service; RESOURCES_HOME=${APP_HOME}/resources/; export SERVER_PORT=${SERVER_PORT:-8452}; -find /opt/app/ -name "*.sh" -exec chmod +x {} + +if [[ ! -h "${APP_HOME}/scripts" ]]; then -if [ -f ${APP_HOME}/aai.sh ]; then + ln -s ${APP_HOME}/bin ${APP_HOME}/scripts; + ln -s /opt/aai/logroot/AAI-SS ${APP_HOME}/logs; - ln -s bin scripts - ln -s /opt/aai/logroot/AAI-SS logs + if [ ! -f ${APP_HOME}/bin/updatePem.sh ]; then + echo "Unable to find the updatePem script"; + exit 1; + else + ${APP_HOME}/bin/updatePem.sh + fi; - mv ${APP_HOME}/aai.sh /etc/profile.d/aai.sh - chmod 755 /etc/profile.d/aai.sh +fi - scriptName=$1; +scriptName=$1; - if [ ! -z $scriptName ]; then +if [ ! -z $scriptName ]; then - if [ -f ${APP_HOME}/bin/${scriptName} ]; then - shift 1; - ${APP_HOME}/bin/${scriptName} "$@" || { - echo "Failed to run the ${scriptName}"; - exit 1; - } - else - echo "Unable to find the script ${scriptName} in ${APP_HOME}/bin"; + if [ -f ${APP_HOME}/bin/${scriptName} ]; then + shift 1; + ${APP_HOME}/bin/${scriptName} "$@" || { + echo "Failed to run the ${scriptName}"; exit 1; - fi; - - exit 0; + } + else + echo "Unable to find the script ${scriptName} in ${APP_HOME}/bin"; + exit 1; fi; + exit 0; fi; +mkdir -p /opt/app/aai-schema-service/logs/gc +mkdir -p /opt/app/aai-schema-service/logs/heap-dumps + if [ -f ${APP_HOME}/resources/aai-schema-service-swm-vars.sh ]; then source ${APP_HOME}/resources/aai-schema-service-swm-vars.sh; fi; -if [ ! -z "${HEAP_SIZE}" ]; then - MIN_HEAP_SIZE=${HEAP_SIZE}; - MAX_HEAP_SIZE=${HEAP_SIZE}; -fi; - -MIN_HEAP_SIZE=${MIN_HEAP_SIZE:-512m}; -MAX_HEAP_SIZE=${MAX_HEAP_SIZE:-1024m}; -MAX_METASPACE_SIZE=${MAX_METASPACE_SIZE:-512m}; - JAVA_CMD="exec java"; -JVM_OPTS="${PRE_JVM_ARGS} -Xloggc:/opt/app/aai-schema-service/logs/gc/aai_gc.log"; -JVM_OPTS="${JVM_OPTS} -XX:HeapDumpPath=/opt/app/aai-schema-service/logs/ajsc-jetty/heap-dump"; -JVM_OPTS="${JVM_OPTS} -Xms${MIN_HEAP_SIZE}"; -JVM_OPTS="${JVM_OPTS} -Xmx${MAX_HEAP_SIZE}"; - -JVM_OPTS="${JVM_OPTS} -XX:+PrintGCDetails"; -JVM_OPTS="${JVM_OPTS} -XX:+PrintGCTimeStamps"; -JVM_OPTS="${JVM_OPTS} -XX:MaxMetaspaceSize=${MAX_METASPACE_SIZE}"; - -JVM_OPTS="${JVM_OPTS} -server"; -JVM_OPTS="${JVM_OPTS} -XX:NewSize=512m"; -JVM_OPTS="${JVM_OPTS} -XX:MaxNewSize=512m"; -JVM_OPTS="${JVM_OPTS} -XX:SurvivorRatio=8"; -JVM_OPTS="${JVM_OPTS} -XX:+DisableExplicitGC"; -JVM_OPTS="${JVM_OPTS} -verbose:gc"; -JVM_OPTS="${JVM_OPTS} -XX:+UseParNewGC"; -JVM_OPTS="${JVM_OPTS} -XX:+CMSParallelRemarkEnabled"; -JVM_OPTS="${JVM_OPTS} -XX:+CMSClassUnloadingEnabled"; -JVM_OPTS="${JVM_OPTS} -XX:+UseConcMarkSweepGC"; -JVM_OPTS="${JVM_OPTS} -XX:-UseBiasedLocking"; -JVM_OPTS="${JVM_OPTS} -XX:ParallelGCThreads=4"; -JVM_OPTS="${JVM_OPTS} -XX:LargePageSizeInBytes=128m"; -JVM_OPTS="${JVM_OPTS} -XX:+PrintGCDetails"; -JVM_OPTS="${JVM_OPTS} -XX:+PrintGCTimeStamps"; +JVM_OPTS="${PRE_JVM_ARGS}"; JVM_OPTS="${JVM_OPTS} -Dsun.net.inetaddr.ttl=180"; -JVM_OPTS="${JVM_OPTS} -XX:+HeapDumpOnOutOfMemoryError"; JVM_OPTS="${JVM_OPTS} ${POST_JVM_ARGS}"; JAVA_OPTS="${PRE_JAVA_OPTS} -DAJSC_HOME=$APP_HOME"; -if [ -f ${INTROSCOPE_LIB}/Agent.jar ] && [ -f ${INTROSCOPE_AGENTPROFILE} ]; then - JAVA_OPTS="${JAVA_OPTS} -javaagent:${INTROSCOPE_LIB}/Agent.jar -noverify -Dcom.wily.introscope.agentProfile=${INTROSCOPE_AGENTPROFILE} -Dintroscope.agent.agentName=schema-service" -fi JAVA_OPTS="${JAVA_OPTS} -Dserver.port=${SERVER_PORT}"; JAVA_OPTS="${JAVA_OPTS} -DBUNDLECONFIG_DIR=./resources"; JAVA_OPTS="${JAVA_OPTS} -Dserver.local.startpath=${RESOURCES_HOME}"; diff --git a/aai-schema-service/src/main/java/org/onap/aai/schemaservice/nodeschema/NodeIngestor.java b/aai-schema-service/src/main/java/org/onap/aai/schemaservice/nodeschema/NodeIngestor.java index 016e86f..16136d5 100644 --- a/aai-schema-service/src/main/java/org/onap/aai/schemaservice/nodeschema/NodeIngestor.java +++ b/aai-schema-service/src/main/java/org/onap/aai/schemaservice/nodeschema/NodeIngestor.java @@ -37,7 +37,7 @@ import org.w3c.dom.NodeList; import org.xml.sax.SAXException; import javax.xml.XMLConstants; -import javax.xml.bind.JAXBException; +import jakarta.xml.bind.JAXBException; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import javax.xml.parsers.ParserConfigurationException; diff --git a/aai-schema/pom.xml b/aai-schema/pom.xml index e0f5778..12069aa 100644 --- a/aai-schema/pom.xml +++ b/aai-schema/pom.xml @@ -36,9 +36,15 @@ src/main/resources/onap/aai_schema src/main/xjb/bindings-onap.xjb + 2.8.0 + + javax.xml.bind + jaxb-api + 2.3.0 + org.onap.aai.schema-service aai-annotations @@ -49,12 +55,6 @@ junit test - - commons-io - commons-io - RELEASE - test - org.jvnet.jaxb2_commons jaxb2-basics @@ -70,13 +70,18 @@ com.googlecode.json-simple json-simple + + commons-io + commons-io + ${commons.io.version} + org.codehaus.mojo jaxb2-maven-plugin - 2.2 + 2.5.0 xjc diff --git a/pom.xml b/pom.xml index 1e6a13d..eb33f4d 100644 --- a/pom.xml +++ b/pom.xml @@ -53,10 +53,95 @@ ${project.version} false + + + 3.9.1 + 3.4.2 + 0.8.6 + 2.22.2 + 3.8.1 + 8 + 8 + 8 + 8 + 3.7.0.1746 + 1.7.26 + + org.apache.maven.plugins + maven-site-plugin + ${maven-site-plugin.version} + + + org.apache.maven.wagon + wagon-webdav-jackrabbit + ${wagon-webdav-jackrabbit.version} + + + + + org.jacoco + jacoco-maven-plugin + ${jacoco-maven-plugin.version} + + + + prepare-agent + + prepare-agent + + + ${sonar.jacoco.reportPath} + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${maven-surefire-plugin.version} + + ${argLine} -Xmx2048m --illegal-access=permit + + + + org.apache.maven.plugins + maven-failsafe-plugin + 2.22.0 + + + --illegal-access=permit + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven-compiler-plugin.version} + true + + ${maven-compiler-plugin.source} + ${maven-compiler-plugin.target} + ${maven-compiler-plugin.test.source} + ${maven-compiler-plugin.test.target} + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + + org.sonarsource.scanner.maven + sonar-maven-plugin + ${sonar-maven-plugin.version} + + +