From 76ea3c6659f864a7e577702165619df20b6f654c Mon Sep 17 00:00:00 2001 From: "Singal, Kapil (ks220y)" Date: Mon, 2 May 2022 14:13:19 -0400 Subject: Refactoring springboot related template and pom-generation Issue-ID: CCSDK-3629 Signed-off-by: Singal, Kapil (ks220y) Change-Id: I0d0bb47e55a1f27131795e609e38c0952e763856 --- springboot/pom.xml | 2 +- springboot/spring-boot-setup/pom.xml | 88 +- .../src/main/properties/springboot2.properties | 14 - .../src/main/properties/springboot23.properties | 14 + .../src/main/resources/pom-template-jdk11.xml | 1090 +++++++++++++++++++ .../src/main/resources/pom-template-jdk8.xml | 1101 ++++++++++++++++++++ .../src/main/resources/pom-template.xml | 1101 -------------------- springboot/springboot1/pom.xml | 4 +- springboot/springboot2/pom.xml | 1101 -------------------- springboot/springboot23/pom.xml | 1101 ++++++++++++++++++++ springboot/springboot25/pom.xml | 22 +- springboot/springboot26/pom.xml | 20 +- 12 files changed, 3411 insertions(+), 2247 deletions(-) delete mode 100644 springboot/spring-boot-setup/src/main/properties/springboot2.properties create mode 100644 springboot/spring-boot-setup/src/main/properties/springboot23.properties create mode 100644 springboot/spring-boot-setup/src/main/resources/pom-template-jdk11.xml create mode 100644 springboot/spring-boot-setup/src/main/resources/pom-template-jdk8.xml delete mode 100644 springboot/spring-boot-setup/src/main/resources/pom-template.xml delete mode 100644 springboot/springboot2/pom.xml create mode 100644 springboot/springboot23/pom.xml diff --git a/springboot/pom.xml b/springboot/pom.xml index 26a51ef6..7a9817dc 100755 --- a/springboot/pom.xml +++ b/springboot/pom.xml @@ -18,7 +18,7 @@ spring-boot-setup springboot1 - springboot2 + springboot23 springboot25 springboot26 diff --git a/springboot/spring-boot-setup/pom.xml b/springboot/spring-boot-setup/pom.xml index 0ddf28d1..6f188107 100644 --- a/springboot/spring-boot-setup/pom.xml +++ b/springboot/spring-boot-setup/pom.xml @@ -35,7 +35,7 @@ src/main/resources - pom-template.xml + pom-template-jdk8.xml true @@ -48,25 +48,73 @@ - create-springboot2-parent-pom + create-springboot23-parent-pom copy-resources validate - ../springboot2 + ../springboot23 src/main/resources - pom-template.xml + pom-template-jdk8.xml true \ - ${basedir}/src/main/properties/springboot2.properties + ${basedir}/src/main/properties/springboot23.properties + + UTF-8 + + + + create-springboot25-parent-pom + + copy-resources + + validate + + ../springboot25 + + + src/main/resources + + pom-template-jdk11.xml + + true + + + \ + + ${basedir}/src/main/properties/springboot25.properties + + UTF-8 + + + + create-springboot26-parent-pom + + copy-resources + + validate + + ../springboot26 + + + src/main/resources + + pom-template-jdk11.xml + + true + + + \ + + ${basedir}/src/main/properties/springboot26.properties UTF-8 @@ -85,19 +133,41 @@ rename - ../springboot1/pom-template.xml + ../springboot1/pom-template-jdk8.xml ../springboot1/pom.xml - rename-springboot2-parent-pom + rename-springboot23-parent-pom + validate + + rename + + + ../springboot23/pom-template-jdk8.xml + ../springboot23/pom.xml + + + + rename-springboot25-parent-pom + validate + + rename + + + ../springboot25/pom-template-jdk11.xml + ../springboot25/pom.xml + + + + rename-springboot26-parent-pom validate rename - ../springboot2/pom-template.xml - ../springboot2/pom.xml + ../springboot26/pom-template-jdk11.xml + ../springboot26/pom.xml diff --git a/springboot/spring-boot-setup/src/main/properties/springboot2.properties b/springboot/spring-boot-setup/src/main/properties/springboot2.properties deleted file mode 100644 index 1389b933..00000000 --- a/springboot/spring-boot-setup/src/main/properties/springboot2.properties +++ /dev/null @@ -1,14 +0,0 @@ -springbootparent.artifactId=spring-boot-starter-parent -springbootparent.groupId=org.springframework.boot -springbootparent.version=2.3.12.RELEASE -springboot.project.artifactId=spring-boot-starter-parent -spring.version=5.2.15.RELEASE -springboot.httpcomponents.core.version=4.4.14 -springboot.httpcomponents.client.version=4.5.13 -springboot.jackson.version=2.11.4 -springboot.logback.version=1.2.3 -springboot.netty.ssl.version=2.0.39.Final -springboot.jersey.version=2.30.1 -springboot.slf4j.version=1.7.25 -springboot.springfox.version=2.9.2 -springboot.tomcat.jdbc.version=9.0.46 diff --git a/springboot/spring-boot-setup/src/main/properties/springboot23.properties b/springboot/spring-boot-setup/src/main/properties/springboot23.properties new file mode 100644 index 00000000..1389b933 --- /dev/null +++ b/springboot/spring-boot-setup/src/main/properties/springboot23.properties @@ -0,0 +1,14 @@ +springbootparent.artifactId=spring-boot-starter-parent +springbootparent.groupId=org.springframework.boot +springbootparent.version=2.3.12.RELEASE +springboot.project.artifactId=spring-boot-starter-parent +spring.version=5.2.15.RELEASE +springboot.httpcomponents.core.version=4.4.14 +springboot.httpcomponents.client.version=4.5.13 +springboot.jackson.version=2.11.4 +springboot.logback.version=1.2.3 +springboot.netty.ssl.version=2.0.39.Final +springboot.jersey.version=2.30.1 +springboot.slf4j.version=1.7.25 +springboot.springfox.version=2.9.2 +springboot.tomcat.jdbc.version=9.0.46 diff --git a/springboot/spring-boot-setup/src/main/resources/pom-template-jdk11.xml b/springboot/spring-boot-setup/src/main/resources/pom-template-jdk11.xml new file mode 100644 index 00000000..6718d610 --- /dev/null +++ b/springboot/spring-boot-setup/src/main/resources/pom-template-jdk11.xml @@ -0,0 +1,1090 @@ + + + 4.0.0 + + + + ${springbootparent.groupId} + ${springbootparent.artifactId} + ${springbootparent.version} + + + + org.onap.ccsdk.parent + ${springboot.project.artifactId} + ${project.version} + pom + + ONAP :: \${project.groupId} :: \${project.artifactId} + Root POM to be used in place of spring-boot parent for CCSDK based projects + http://wiki.onap.org + + ONAP + + + + JIRA + https://jira.onap.org/ + + + + + ecomp-releases + \${onap.nexus.release-url} + + + ecomp-snapshots + \${onap.nexus.snapshot-url} + + + + + + 3.7.0.1746 + 3.2 + jacoco + + \${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml,\${project.reporting.outputDirectory}/jacoco-it/jacoco.xml + + **/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/** + + + 0.8.5 + + + UTF-8 + UTF-8 + + /content/sites/site/\${project.groupId}/\${project.artifactId}/\${project.version} + + + \${basedir}/src/main/resources/swagger.properties + + \${basedir}/src/main/resources/swagger.json + + + + https://nexus.onap.org + nexus.onap.org + 443 + https + https://nexus.onap.org/content/groups/public + https://nexus.onap.org/content/groups/staging + https://nexus.onap.org/content/repositories/releases + https://nexus.onap.org/content/repositories/snapshots + ecomp-staging + 176c31dfe190a + + 11 + 2.5.0 + 3.8.1 + features.xml + src/main/yang-gen-config + src/main/yang-gen-sal + true + + + 1.6.9 + + + (1.3.99999,1.4.99999-SNAPSHOT] + (1.3.99999, 1.4.99999-SNAPSHOT] + (1.3.99999, 1.4.99999-SNAPSHOT] + (1.4.99999, 1.5.99999-SNAPSHOT] + ${ccsdk.sli.version} + ${ccsdk.sli.version} + ${ccsdk.sli.version} + ${ccsdk.sli.version} + + + ${springbootparent.version} + ${spring.version} + + + 1.8 + 1.3.61 + 1.3.61 + 1.3.3 + 1.5.0 + 0.5.0 + 2.6.6 + 2.2.3 + 1.9.3 + + + 4.8-1 + 2.6 + ${springboot.httpcomponents.core.version} + ${springboot.httpcomponents.client.version} + 10.14.2.0 + 1.0.0 + 1.25.0 + ${springboot.netty.ssl.version} + 3.10.0 + 3.10.0 + ${springboot.jersey.version} + ${springboot.jersey.version} + 1.3.8 + 2.17.1 + 2.17.1 + ${springboot.logback.version} + 2.7.3 + 2.4.0 + ${springboot.slf4j.version} + ${springboot.springfox.version} + 6.14.3 + ${springboot.tomcat.jdbc.version} + direct-dependencies.txt + + + + + + + org.onap.ccsdk.parent + dependencies-bom + ${project.version} + pom + import + + + com.fasterxml.jackson + jackson-bom + ${springboot.jackson.version} + pom + import + + + org.onap.ccsdk.sli.core + sli-common + \${ccsdk.sli.core.version} + + + org.onap.ccsdk.sli.core + sli-provider + \${ccsdk.sli.core.version} + + + org.onap.ccsdk.sli.core + ccsdk-sli + \${ccsdk.sli.core.version} + xml + features + + + org.onap.ccsdk.sli.core + dblib-provider + \${ccsdk.sli.core.version} + + + org.onap.ccsdk.sli.adaptors + aai-service-provider + \${ccsdk.sli.adaptors.version} + + + org.onap.logging-analytics + logging-slf4j + \${logging-analytics.version} + + + org.onap.logging-analytics + logging-filter-base + \${logging-analytics.version} + + + org.liquibase + liquibase-core + 4.4.2-nordix + + + + + + + onap-public + \${onap.nexus.public-url} + + true + never + + + true + always + + + + onap-staging + \${onap.nexus.staging-url} + + true + never + + + true + always + + + + ecomp-release + onap-repository-releases + \${onap.nexus.release-url} + + true + never + + + false + + + + ecomp-snapshot + onap-repository-snapshots + \${onap.nexus.snapshot-url} + + false + + + true + + + + + + + onap-public + \${onap.nexus.public-url} + + true + + + true + + + + onap-staging + \${onap.nexus.staging-url} + + true + + + true + + + + onap-snapshot + \${onap.nexus.snapshot-url} + + false + + + true + + + + + JCenter + JCenter Repository + http://jcenter.bintray.com + + + + Restlet + Restlet Repository + http://maven.restlet.com + + + + + + + + + org.apache.maven.plugins + maven-deploy-plugin + + 2.8 + + + true + + + + org.apache.maven.plugins + maven-site-plugin + 3.6 + + + org.apache.maven.wagon + wagon-webdav-jackrabbit + 2.10 + + + org.apache.maven.doxia + doxia-core + 1.7 + + + org.apache.maven.doxia + doxia-sink-api + 1.7 + + + org.apache.maven.doxia + doxia-logging-api + 1.7 + + + + + attach-descriptor + + attach-descriptor + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 2.17 + + + org.onap.oparent + checkstyle + 1.1.1 + + + + + check-license + + check + + process-sources + + onap-checkstyle/check-license.xml + onap-checkstyle/apache-license-2.regexp.txt + false + true + false + \${project.build.sourceDirectory} + + + false + true + + + + check-style + + check + + process-sources + + + onap-checkstyle/onap-java-style.xml + + \${project.build.sourceDirectory}/src/main/java + true + true + true + + + false + true + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.19.1 + + + \${surefireArgLine} + + + **/IT*.java + + + + + org.apache.maven.plugins + maven-failsafe-plugin + 2.19.1 + + + + integration-tests + + integration-test + verify + + + + \${failsafeArgLine} + + + + + + org.apache.maven.plugins + maven-compiler-plugin + \${maven.compile.plugin.version} + + \${java.version} + + + + + + + org.sonarsource.scanner.maven + sonar-maven-plugin + 3.6.0.1398 + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.2.0 + + + + org.slf4j + slf4j-api + \${slf4j.version} + + + org.antlr + antlr4 + \${antlr.version} + + + org.antlr + antlr4-runtime + \${antlr.version} + + + com.sun.jersey + jersey-client + \${jersey.client.version} + + + com.sun.jersey + jersey-core + \${jersey.version} + + + org.apache.httpcomponents + httpcore-osgi + \${apache.httpcomponents.core.version} + + + org.apache.httpcomponents + httpclient-osgi + \${apache.httpcomponents.client.version} + + + commons-lang + commons-lang + \${commons.lang.version} + + + false + + + + aggregate + + aggregate + + site + + + + + com.github.ferstl + depgraph-maven-plugin + 3.3.0 + + text + \${dependency-list.file} + \${project.basedir} + * + true + true + + + + + + + + + org.jacoco + jacoco-maven-plugin + \${jacoco.version} + + + pre-unit-test + + prepare-agent + + + + \${project.build.directory}/code-coverage/jacoco-ut.exec + + surefireArgLine + + + + + post-unit-test + test + + report + + + + \${project.build.directory}/code-coverage/jacoco-ut.exec + + \${project.reporting.outputDirectory}/jacoco-ut + + + + pre-integration-test + pre-integration-test + + prepare-agent + + + + \${project.build.directory}/code-coverage/jacoco-it.exec + + failsafeArgLine + + + + + post-integration-test + post-integration-test + + report + + + + \${project.build.directory}/code-coverage/jacoco-it.exec + + \${project.reporting.outputDirectory}/jacoco-it + + + + default-prepare-agent + + prepare-agent + + + + default-report + prepare-package + + report + + + + default-check + + check + + + + + PACKAGE + + + COMPLEXITY + COVEREDRATIO + 0.0 + + + + + + + + + + org.apache.maven.plugins + maven-deploy-plugin + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + org.codehaus.mojo + build-helper-maven-plugin + 1.12 + + + + org.apache.maven.plugins + maven-surefire-plugin + + + org.apache.maven.plugins + maven-failsafe-plugin + + + + + org.codehaus.mojo + properties-maven-plugin + 1.0.0 + + + + set-system-properties + + + + + maven.wagon.http.ssl.allowall + \${ssl.allowall} + + + maven.wagon.http.ssl.insecure + \${ssl.insecure} + + + + + + + + org.codehaus.mojo + versions-maven-plugin + 2.5 + + true + + + + maven-scm-plugin + 1.8.1 + + \${project.artifactId}-\${project.version} + + + + pl.project13.maven + git-commit-id-plugin + 4.0.0 + + full + + ^git.build.(time|version)$ + ^git.commit.id.(abbrev|full)$ + + + + + + + + + + maven-javadoc-plugin + 2.10.4 + + false + org.umlgraph.doclet.UmlGraphDoc + + org.umlgraph + umlgraph + 5.6 + + -views + true + org.opendaylight.* + + + + + javadoc-no-fork + test-javadoc-no-fork + + + + aggregate + + aggregate + test-aggregate + + + + + + org.apache.maven.plugins + maven-jxr-plugin + 2.3 + + + aggregate + + aggregate + test-aggregate + + + + + + maven-surefire-plugin + 2.17 + + + org.apache.maven.plugins + maven-changelog-plugin + 2.3 + + + dual-report + + range + 30 + + + changelog + file-activity + + + + + + org.codehaus.mojo + taglist-maven-plugin + 2.4 + + + + + + + + generate-json + + + \${swagger-properties} + + + swagger-sdk.generate-json + + + + + + org.codehaus.mojo + properties-maven-plugin + 1.0.0 + + + initialize + + read-project-properties + + + + \${basedir}/src/main/resources/swagger.properties + + + + + + + com.github.kongchen + swagger-maven-plugin + 3.1.4 + + + + \${api-rest-package} + http,https + \${api-host-ip}:\${api-host-port} + \${api-base-path} + + \${api-title} + \${api-version} + \${api-description} + + \${api-license} + + + \${basedir}/src/main/resources + + + + + + compile + + generate + + + + + + org.apache.maven.plugins + maven-install-plugin + 2.3.1 + + + install-file-id + install + + install-file + + + \${basedir}/src/main/resources/swagger.json + \${project.groupId} + \${project.artifactId}-swagger-schema + \${project.version} + json + + + + + + + + + generate-sdk + + + \${swagger-json} + + + swagger-sdk.generate-java-sdk + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.8 + + + initialize + ant-create-script + + true + + + + + + + + + + + + + + + + + + + + + + + + + + run + + + + + + ant-contrib + ant-contrib + 1.0b3 + + + ant + ant + + + + + + + io.swagger + swagger-codegen-maven-plugin + 2.2.1 + + + + generate + + + \${basedir}/src/main/resources/swagger.json + \${project.build.directory}/generated-sources + java + + joda + + jersey2 + \${project.groupId} + \${project.artifactId}-java-sdk + \${project.version} + \${project.groupId}.\${project.artifactId}.client.model + \${project.groupId}.\${project.artifactId}.client.api + \${project.groupId}.\${project.artifactId}.client.invoker + + + + + + org.codehaus.mojo + exec-maven-plugin + 1.5.0 + + + swagger-generate-sources + generate-sources + + exec + + + \${project.build.directory}\${file.separator}\${swagger.sdk.script.file} + + + + + + org.apache.maven.plugins + maven-clean-plugin + 3.0.0 + + + clean-generated-files + generate-sources + + clean + + + + + \${project.build.directory}/generated-sources + + + + + + + + + + + org.onap.msb.swagger-sdk + swagger-sdk + 1.0.0 + + + + + + q + + true + true + true + + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true + + + + sonar-jacoco-aggregate + + + onap.jacoco.aggregateFile + + + + + + org.jacoco + jacoco-maven-plugin + + + merge + + merge + + generate-resources + + ${onap.jacoco.aggregateFile} + + + \${project.basedir} + + **/target/code-coverage/*.exec + + + + + + + + + + + + + diff --git a/springboot/spring-boot-setup/src/main/resources/pom-template-jdk8.xml b/springboot/spring-boot-setup/src/main/resources/pom-template-jdk8.xml new file mode 100644 index 00000000..af90750a --- /dev/null +++ b/springboot/spring-boot-setup/src/main/resources/pom-template-jdk8.xml @@ -0,0 +1,1101 @@ + + + 4.0.0 + + + + ${springbootparent.groupId} + ${springbootparent.artifactId} + ${springbootparent.version} + + + + org.onap.ccsdk.parent + ${springboot.project.artifactId} + ${project.version} + pom + + ONAP :: \${project.groupId} :: \${project.artifactId} + Root POM to be used in place of spring-boot parent for CCSDK based projects + http://wiki.onap.org + + ONAP + + + + JIRA + https://jira.onap.org/ + + + + + ecomp-releases + \${onap.nexus.release-url} + + + ecomp-snapshots + \${onap.nexus.snapshot-url} + + + + + + 3.7.0.1746 + 3.2 + jacoco + + \${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml,\${project.reporting.outputDirectory}/jacoco-it/jacoco.xml + + **/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/** + + + 0.8.5 + + + 1.8 + 1.8 + UTF-8 + UTF-8 + + /content/sites/site/\${project.groupId}/\${project.artifactId}/\${project.version} + + + \${basedir}/src/main/resources/swagger.properties + + \${basedir}/src/main/resources/swagger.json + + + + https://nexus.onap.org + nexus.onap.org + 443 + https + https://nexus.onap.org/content/groups/public + https://nexus.onap.org/content/groups/staging + https://nexus.onap.org/content/repositories/releases + https://nexus.onap.org/content/repositories/snapshots + ecomp-staging + 176c31dfe190a + + 1.8 + 1.8 + 2.5.0 + 2.5.1 + features.xml + src/main/yang-gen-config + src/main/yang-gen-sal + true + + + 1.6.9 + + + (1.3.99999,1.4.99999-SNAPSHOT] + (1.3.99999, 1.4.99999-SNAPSHOT] + (1.3.99999, 1.4.99999-SNAPSHOT] + (1.4.99999, 1.5.99999-SNAPSHOT] + ${ccsdk.sli.version} + ${ccsdk.sli.version} + ${ccsdk.sli.version} + ${ccsdk.sli.version} + + + ${springbootparent.version} + ${spring.version} + + + 1.8 + 1.3.61 + 1.3.61 + 1.3.3 + 1.5.0 + 0.5.0 + 2.6.6 + 2.2.3 + 1.9.3 + + + 4.8-1 + 2.6 + ${springboot.httpcomponents.core.version} + ${springboot.httpcomponents.client.version} + 10.14.2.0 + 1.0.0 + 1.25.0 + ${springboot.netty.ssl.version} + 3.10.0 + 3.10.0 + ${springboot.jersey.version} + ${springboot.jersey.version} + 1.3.8 + 2.17.1 + 2.17.1 + ${springboot.logback.version} + 2.7.3 + 2.4.0 + ${springboot.slf4j.version} + ${springboot.springfox.version} + 6.14.3 + ${springboot.tomcat.jdbc.version} + direct-dependencies.txt + + + + + + + org.onap.ccsdk.parent + dependencies-bom + ${project.version} + pom + import + + + com.fasterxml.jackson + jackson-bom + ${springboot.jackson.version} + pom + import + + + org.onap.ccsdk.sli.core + sli-common + \${ccsdk.sli.core.version} + + + org.onap.ccsdk.sli.core + sli-provider + \${ccsdk.sli.core.version} + + + org.onap.ccsdk.sli.core + ccsdk-sli + \${ccsdk.sli.core.version} + xml + features + + + org.onap.ccsdk.sli.core + dblib-provider + \${ccsdk.sli.core.version} + + + org.onap.ccsdk.sli.adaptors + aai-service-provider + \${ccsdk.sli.adaptors.version} + + + org.onap.logging-analytics + logging-slf4j + \${logging-analytics.version} + + + org.onap.logging-analytics + logging-filter-base + \${logging-analytics.version} + + + org.liquibase + liquibase-core + 4.4.2-nordix + + + org.apache.logging.log4j + log4j-api + ${log4j2.version} + + + org.apache.logging.log4j + log4j-core + ${log4j2.version} + + + + + + + onap-public + \${onap.nexus.public-url} + + true + never + + + true + always + + + + onap-staging + \${onap.nexus.staging-url} + + true + never + + + true + always + + + + ecomp-release + onap-repository-releases + \${onap.nexus.release-url} + + true + never + + + false + + + + ecomp-snapshot + onap-repository-snapshots + \${onap.nexus.snapshot-url} + + false + + + true + + + + + + + onap-public + \${onap.nexus.public-url} + + true + + + true + + + + onap-staging + \${onap.nexus.staging-url} + + true + + + true + + + + onap-snapshot + \${onap.nexus.snapshot-url} + + false + + + true + + + + + JCenter + JCenter Repository + http://jcenter.bintray.com + + + + Restlet + Restlet Repository + http://maven.restlet.com + + + + + + + + + org.apache.maven.plugins + maven-deploy-plugin + + 2.8 + + + true + + + + org.apache.maven.plugins + maven-site-plugin + 3.6 + + + org.apache.maven.wagon + wagon-webdav-jackrabbit + 2.10 + + + org.apache.maven.doxia + doxia-core + 1.7 + + + org.apache.maven.doxia + doxia-sink-api + 1.7 + + + org.apache.maven.doxia + doxia-logging-api + 1.7 + + + + + attach-descriptor + + attach-descriptor + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 2.17 + + + org.onap.oparent + checkstyle + 1.1.1 + + + + + check-license + + check + + process-sources + + onap-checkstyle/check-license.xml + onap-checkstyle/apache-license-2.regexp.txt + false + true + false + \${project.build.sourceDirectory} + + + false + true + + + + check-style + + check + + process-sources + + + onap-checkstyle/onap-java-style.xml + + \${project.build.sourceDirectory}/src/main/java + true + true + true + + + false + true + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.19.1 + + + \${surefireArgLine} + + + **/IT*.java + + + + + org.apache.maven.plugins + maven-failsafe-plugin + 2.19.1 + + + + integration-tests + + integration-test + verify + + + + \${failsafeArgLine} + + + + + + org.apache.maven.plugins + maven-compiler-plugin + \${maven.compile.plugin.version} + + \${java.version.source} + \${java.version.target} + + + + org.sonarsource.scanner.maven + sonar-maven-plugin + 3.6.0.1398 + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.2.0 + + + + org.slf4j + slf4j-api + \${slf4j.version} + + + org.antlr + antlr4 + \${antlr.version} + + + org.antlr + antlr4-runtime + \${antlr.version} + + + com.sun.jersey + jersey-client + \${jersey.client.version} + + + com.sun.jersey + jersey-core + \${jersey.version} + + + org.apache.httpcomponents + httpcore-osgi + \${apache.httpcomponents.core.version} + + + org.apache.httpcomponents + httpclient-osgi + \${apache.httpcomponents.client.version} + + + commons-lang + commons-lang + \${commons.lang.version} + + + false + + + + aggregate + + aggregate + + site + + + + + com.github.ferstl + depgraph-maven-plugin + 3.3.0 + + text + \${dependency-list.file} + \${project.basedir} + * + true + true + + + + + + + + + org.jacoco + jacoco-maven-plugin + \${jacoco.version} + + + pre-unit-test + + prepare-agent + + + + \${project.build.directory}/code-coverage/jacoco-ut.exec + + surefireArgLine + + + + + post-unit-test + test + + report + + + + \${project.build.directory}/code-coverage/jacoco-ut.exec + + \${project.reporting.outputDirectory}/jacoco-ut + + + + pre-integration-test + pre-integration-test + + prepare-agent + + + + \${project.build.directory}/code-coverage/jacoco-it.exec + + failsafeArgLine + + + + + post-integration-test + post-integration-test + + report + + + + \${project.build.directory}/code-coverage/jacoco-it.exec + + \${project.reporting.outputDirectory}/jacoco-it + + + + default-prepare-agent + + prepare-agent + + + + default-report + prepare-package + + report + + + + default-check + + check + + + + + PACKAGE + + + COMPLEXITY + COVEREDRATIO + 0.0 + + + + + + + + + + org.apache.maven.plugins + maven-deploy-plugin + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + org.codehaus.mojo + build-helper-maven-plugin + 1.12 + + + + org.apache.maven.plugins + maven-surefire-plugin + + + org.apache.maven.plugins + maven-failsafe-plugin + + + + + org.codehaus.mojo + properties-maven-plugin + 1.0.0 + + + + set-system-properties + + + + + maven.wagon.http.ssl.allowall + \${ssl.allowall} + + + maven.wagon.http.ssl.insecure + \${ssl.insecure} + + + + + + + + org.codehaus.mojo + versions-maven-plugin + 2.5 + + true + + + + maven-scm-plugin + 1.8.1 + + \${project.artifactId}-\${project.version} + + + + pl.project13.maven + git-commit-id-plugin + 4.0.0 + + full + + ^git.build.(time|version)$ + ^git.commit.id.(abbrev|full)$ + + + + + + + + + + maven-javadoc-plugin + 2.10.4 + + false + org.umlgraph.doclet.UmlGraphDoc + + org.umlgraph + umlgraph + 5.6 + + -views + true + org.opendaylight.* + + + + + javadoc-no-fork + test-javadoc-no-fork + + + + aggregate + + aggregate + test-aggregate + + + + + + org.apache.maven.plugins + maven-jxr-plugin + 2.3 + + + aggregate + + aggregate + test-aggregate + + + + + + maven-surefire-plugin + 2.17 + + + org.apache.maven.plugins + maven-changelog-plugin + 2.3 + + + dual-report + + range + 30 + + + changelog + file-activity + + + + + + org.codehaus.mojo + taglist-maven-plugin + 2.4 + + + + + + + + generate-json + + + \${swagger-properties} + + + swagger-sdk.generate-json + + + + + + org.codehaus.mojo + properties-maven-plugin + 1.0.0 + + + initialize + + read-project-properties + + + + \${basedir}/src/main/resources/swagger.properties + + + + + + + com.github.kongchen + swagger-maven-plugin + 3.1.4 + + + + \${api-rest-package} + http,https + \${api-host-ip}:\${api-host-port} + \${api-base-path} + + \${api-title} + \${api-version} + \${api-description} + + \${api-license} + + + \${basedir}/src/main/resources + + + + + + compile + + generate + + + + + + org.apache.maven.plugins + maven-install-plugin + 2.3.1 + + + install-file-id + install + + install-file + + + \${basedir}/src/main/resources/swagger.json + \${project.groupId} + \${project.artifactId}-swagger-schema + \${project.version} + json + + + + + + + + + generate-sdk + + + \${swagger-json} + + + swagger-sdk.generate-java-sdk + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.8 + + + initialize + ant-create-script + + true + + + + + + + + + + + + + + + + + + + + + + + + + + run + + + + + + ant-contrib + ant-contrib + 1.0b3 + + + ant + ant + + + + + + + io.swagger + swagger-codegen-maven-plugin + 2.2.1 + + + + generate + + + \${basedir}/src/main/resources/swagger.json + \${project.build.directory}/generated-sources + java + + joda + + jersey2 + \${project.groupId} + \${project.artifactId}-java-sdk + \${project.version} + \${project.groupId}.\${project.artifactId}.client.model + \${project.groupId}.\${project.artifactId}.client.api + \${project.groupId}.\${project.artifactId}.client.invoker + + + + + + org.codehaus.mojo + exec-maven-plugin + 1.5.0 + + + swagger-generate-sources + generate-sources + + exec + + + \${project.build.directory}\${file.separator}\${swagger.sdk.script.file} + + + + + + org.apache.maven.plugins + maven-clean-plugin + 3.0.0 + + + clean-generated-files + generate-sources + + clean + + + + + \${project.build.directory}/generated-sources + + + + + + + + + + + org.onap.msb.swagger-sdk + swagger-sdk + 1.0.0 + + + + + + q + + true + true + true + + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true + + + + sonar-jacoco-aggregate + + + onap.jacoco.aggregateFile + + + + + + org.jacoco + jacoco-maven-plugin + + + merge + + merge + + generate-resources + + ${onap.jacoco.aggregateFile} + + + \${project.basedir} + + **/target/code-coverage/*.exec + + + + + + + + + + + + + diff --git a/springboot/spring-boot-setup/src/main/resources/pom-template.xml b/springboot/spring-boot-setup/src/main/resources/pom-template.xml deleted file mode 100644 index 69fd35e0..00000000 --- a/springboot/spring-boot-setup/src/main/resources/pom-template.xml +++ /dev/null @@ -1,1101 +0,0 @@ - - - 4.0.0 - - - - ${springbootparent.groupId} - ${springbootparent.artifactId} - ${springbootparent.version} - - - - org.onap.ccsdk.parent - ${springboot.project.artifactId} - ${project.version} - pom - - ONAP :: \${project.groupId} :: \${project.artifactId} - Root POM to be used in place of spring-boot parent for CCSDK based projects - http://wiki.onap.org - - ONAP - - - - JIRA - https://jira.onap.org/ - - - - - ecomp-releases - \${onap.nexus.release-url} - - - ecomp-snapshots - \${onap.nexus.snapshot-url} - - - - - - 3.7.0.1746 - 3.2 - jacoco - - \${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml,\${project.reporting.outputDirectory}/jacoco-it/jacoco.xml - - **/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/** - - - 0.8.5 - - - 1.8 - 1.8 - UTF-8 - UTF-8 - - /content/sites/site/\${project.groupId}/\${project.artifactId}/\${project.version} - - - \${basedir}/src/main/resources/swagger.properties - - \${basedir}/src/main/resources/swagger.json - - - - https://nexus.onap.org - nexus.onap.org - 443 - https - https://nexus.onap.org/content/groups/public - https://nexus.onap.org/content/groups/staging - https://nexus.onap.org/content/repositories/releases - https://nexus.onap.org/content/repositories/snapshots - ecomp-staging - 176c31dfe190a - - 1.8 - 1.8 - 2.5.0 - 2.5.1 - features.xml - src/main/yang-gen-config - src/main/yang-gen-sal - true - - - 1.6.9 - - - (1.3.99999,1.4.99999-SNAPSHOT] - (1.3.99999, 1.4.99999-SNAPSHOT] - (1.3.99999, 1.4.99999-SNAPSHOT] - (1.4.99999, 1.5.99999-SNAPSHOT] - ${ccsdk.sli.version} - ${ccsdk.sli.version} - ${ccsdk.sli.version} - ${ccsdk.sli.version} - - - ${springbootparent.version} - ${spring.version} - - - 1.8 - 1.3.61 - 1.3.61 - 1.3.3 - 1.5.0 - 0.5.0 - 2.6.6 - 2.2.3 - 1.9.3 - - - 4.8-1 - 2.6 - ${springboot.httpcomponents.core.version} - ${springboot.httpcomponents.client.version} - 10.14.2.0 - 1.0.0 - 1.25.0 - ${springboot.netty.ssl.version} - 3.10.0 - 3.10.0 - ${springboot.jersey.version} - ${springboot.jersey.version} - 1.3.8 - 2.17.1 - 2.17.1 - 1.2.3 - 2.7.3 - 2.4.0 - ${springboot.slf4j.version} - ${springboot.springfox.version} - 6.14.3 - ${springboot.tomcat.jdbc.version} - direct-dependencies.txt - - - - - - - org.onap.ccsdk.parent - dependencies-bom - ${project.version} - pom - import - - - com.fasterxml.jackson - jackson-bom - ${springboot.jackson.version} - pom - import - - - org.onap.ccsdk.sli.core - sli-common - \${ccsdk.sli.core.version} - - - org.onap.ccsdk.sli.core - sli-provider - \${ccsdk.sli.core.version} - - - org.onap.ccsdk.sli.core - ccsdk-sli - \${ccsdk.sli.core.version} - xml - features - - - org.onap.ccsdk.sli.core - dblib-provider - \${ccsdk.sli.core.version} - - - org.onap.ccsdk.sli.adaptors - aai-service-provider - \${ccsdk.sli.adaptors.version} - - - org.onap.logging-analytics - logging-slf4j - \${logging-analytics.version} - - - org.onap.logging-analytics - logging-filter-base - \${logging-analytics.version} - - - org.liquibase - liquibase-core - 4.4.2-nordix - - - org.apache.logging.log4j - log4j-api - ${log4j2.version} - - - org.apache.logging.log4j - log4j-core - ${log4j2.version} - - - - - - - onap-public - \${onap.nexus.public-url} - - true - never - - - true - always - - - - onap-staging - \${onap.nexus.staging-url} - - true - never - - - true - always - - - - ecomp-release - onap-repository-releases - \${onap.nexus.release-url} - - true - never - - - false - - - - ecomp-snapshot - onap-repository-snapshots - \${onap.nexus.snapshot-url} - - false - - - true - - - - - - - onap-public - \${onap.nexus.public-url} - - true - - - true - - - - onap-staging - \${onap.nexus.staging-url} - - true - - - true - - - - onap-snapshot - \${onap.nexus.snapshot-url} - - false - - - true - - - - - JCenter - JCenter Repository - http://jcenter.bintray.com - - - - Restlet - Restlet Repository - http://maven.restlet.com - - - - - - - - - org.apache.maven.plugins - maven-deploy-plugin - - 2.8 - - - true - - - - org.apache.maven.plugins - maven-site-plugin - 3.6 - - - org.apache.maven.wagon - wagon-webdav-jackrabbit - 2.10 - - - org.apache.maven.doxia - doxia-core - 1.7 - - - org.apache.maven.doxia - doxia-sink-api - 1.7 - - - org.apache.maven.doxia - doxia-logging-api - 1.7 - - - - - attach-descriptor - - attach-descriptor - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.17 - - - org.onap.oparent - checkstyle - 1.1.1 - - - - - check-license - - check - - process-sources - - onap-checkstyle/check-license.xml - onap-checkstyle/apache-license-2.regexp.txt - false - true - false - \${project.build.sourceDirectory} - - - false - true - - - - check-style - - check - - process-sources - - - onap-checkstyle/onap-java-style.xml - - \${project.build.sourceDirectory}/src/main/java - true - true - true - - - false - true - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.19.1 - - - \${surefireArgLine} - - - **/IT*.java - - - - - org.apache.maven.plugins - maven-failsafe-plugin - 2.19.1 - - - - integration-tests - - integration-test - verify - - - - \${failsafeArgLine} - - - - - - org.apache.maven.plugins - maven-compiler-plugin - \${maven.compile.plugin.version} - - \${java.version.source} - \${java.version.target} - - - - org.sonarsource.scanner.maven - sonar-maven-plugin - 3.6.0.1398 - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.2.0 - - - - org.slf4j - slf4j-api - \${slf4j.version} - - - org.antlr - antlr4 - \${antlr.version} - - - org.antlr - antlr4-runtime - \${antlr.version} - - - com.sun.jersey - jersey-client - \${jersey.client.version} - - - com.sun.jersey - jersey-core - \${jersey.version} - - - org.apache.httpcomponents - httpcore-osgi - \${apache.httpcomponents.core.version} - - - org.apache.httpcomponents - httpclient-osgi - \${apache.httpcomponents.client.version} - - - commons-lang - commons-lang - \${commons.lang.version} - - - false - - - - aggregate - - aggregate - - site - - - - - com.github.ferstl - depgraph-maven-plugin - 3.3.0 - - text - \${dependency-list.file} - \${project.basedir} - * - true - true - - - - - - - - - org.jacoco - jacoco-maven-plugin - \${jacoco.version} - - - pre-unit-test - - prepare-agent - - - - \${project.build.directory}/code-coverage/jacoco-ut.exec - - surefireArgLine - - - - - post-unit-test - test - - report - - - - \${project.build.directory}/code-coverage/jacoco-ut.exec - - \${project.reporting.outputDirectory}/jacoco-ut - - - - pre-integration-test - pre-integration-test - - prepare-agent - - - - \${project.build.directory}/code-coverage/jacoco-it.exec - - failsafeArgLine - - - - - post-integration-test - post-integration-test - - report - - - - \${project.build.directory}/code-coverage/jacoco-it.exec - - \${project.reporting.outputDirectory}/jacoco-it - - - - default-prepare-agent - - prepare-agent - - - - default-report - prepare-package - - report - - - - default-check - - check - - - - - PACKAGE - - - COMPLEXITY - COVEREDRATIO - 0.0 - - - - - - - - - - org.apache.maven.plugins - maven-deploy-plugin - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - org.codehaus.mojo - build-helper-maven-plugin - 1.12 - - - - org.apache.maven.plugins - maven-surefire-plugin - - - org.apache.maven.plugins - maven-failsafe-plugin - - - - - org.codehaus.mojo - properties-maven-plugin - 1.0.0 - - - - set-system-properties - - - - - maven.wagon.http.ssl.allowall - \${ssl.allowall} - - - maven.wagon.http.ssl.insecure - \${ssl.insecure} - - - - - - - - org.codehaus.mojo - versions-maven-plugin - 2.5 - - true - - - - maven-scm-plugin - 1.8.1 - - \${project.artifactId}-\${project.version} - - - - pl.project13.maven - git-commit-id-plugin - 4.0.0 - - full - - ^git.build.(time|version)$ - ^git.commit.id.(abbrev|full)$ - - - - - - - - - - maven-javadoc-plugin - 2.10.4 - - false - org.umlgraph.doclet.UmlGraphDoc - - org.umlgraph - umlgraph - 5.6 - - -views - true - org.opendaylight.* - - - - - javadoc-no-fork - test-javadoc-no-fork - - - - aggregate - - aggregate - test-aggregate - - - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.3 - - - aggregate - - aggregate - test-aggregate - - - - - - maven-surefire-plugin - 2.17 - - - org.apache.maven.plugins - maven-changelog-plugin - 2.3 - - - dual-report - - range - 30 - - - changelog - file-activity - - - - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - - - - - - generate-json - - - \${swagger-properties} - - - swagger-sdk.generate-json - - - - - - org.codehaus.mojo - properties-maven-plugin - 1.0.0 - - - initialize - - read-project-properties - - - - \${basedir}/src/main/resources/swagger.properties - - - - - - - com.github.kongchen - swagger-maven-plugin - 3.1.4 - - - - \${api-rest-package} - http,https - \${api-host-ip}:\${api-host-port} - \${api-base-path} - - \${api-title} - \${api-version} - \${api-description} - - \${api-license} - - - \${basedir}/src/main/resources - - - - - - compile - - generate - - - - - - org.apache.maven.plugins - maven-install-plugin - 2.3.1 - - - install-file-id - install - - install-file - - - \${basedir}/src/main/resources/swagger.json - \${project.groupId} - \${project.artifactId}-swagger-schema - \${project.version} - json - - - - - - - - - generate-sdk - - - \${swagger-json} - - - swagger-sdk.generate-java-sdk - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.8 - - - initialize - ant-create-script - - true - - - - - - - - - - - - - - - - - - - - - - - - - - run - - - - - - ant-contrib - ant-contrib - 1.0b3 - - - ant - ant - - - - - - - io.swagger - swagger-codegen-maven-plugin - 2.2.1 - - - - generate - - - \${basedir}/src/main/resources/swagger.json - \${project.build.directory}/generated-sources - java - - joda - - jersey2 - \${project.groupId} - \${project.artifactId}-java-sdk - \${project.version} - \${project.groupId}.\${project.artifactId}.client.model - \${project.groupId}.\${project.artifactId}.client.api - \${project.groupId}.\${project.artifactId}.client.invoker - - - - - - org.codehaus.mojo - exec-maven-plugin - 1.5.0 - - - swagger-generate-sources - generate-sources - - exec - - - \${project.build.directory}\${file.separator}\${swagger.sdk.script.file} - - - - - - org.apache.maven.plugins - maven-clean-plugin - 3.0.0 - - - clean-generated-files - generate-sources - - clean - - - - - \${project.build.directory}/generated-sources - - - - - - - - - - - org.onap.msb.swagger-sdk - swagger-sdk - 1.0.0 - - - - - - q - - true - true - true - - true - true - true - true - true - true - true - true - true - true - true - true - true - true - true - true - true - true - true - true - - - - sonar-jacoco-aggregate - - - onap.jacoco.aggregateFile - - - - - - org.jacoco - jacoco-maven-plugin - - - merge - - merge - - generate-resources - - ${onap.jacoco.aggregateFile} - - - \${project.basedir} - - **/target/code-coverage/*.exec - - - - - - - - - - - - - diff --git a/springboot/springboot1/pom.xml b/springboot/springboot1/pom.xml index e693ea7c..4d0946d8 100644 --- a/springboot/springboot1/pom.xml +++ b/springboot/springboot1/pom.xml @@ -2,7 +2,7 @@ 4.0.0 - @@ -202,7 +202,7 @@ org.liquibase liquibase-core 4.4.2-nordix - + org.apache.logging.log4j log4j-api diff --git a/springboot/springboot2/pom.xml b/springboot/springboot2/pom.xml deleted file mode 100644 index f93a9b3f..00000000 --- a/springboot/springboot2/pom.xml +++ /dev/null @@ -1,1101 +0,0 @@ - - - 4.0.0 - - - - org.springframework.boot - spring-boot-starter-parent - 2.3.12.RELEASE - - - - org.onap.ccsdk.parent - spring-boot-starter-parent - 2.4.0-SNAPSHOT - pom - - ONAP :: ${project.groupId} :: ${project.artifactId} - Root POM to be used in place of spring-boot parent for CCSDK based projects - http://wiki.onap.org - - ONAP - - - - JIRA - https://jira.onap.org/ - - - - - ecomp-releases - ${onap.nexus.release-url} - - - ecomp-snapshots - ${onap.nexus.snapshot-url} - - - - - - 3.7.0.1746 - 3.2 - jacoco - - ${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml,${project.reporting.outputDirectory}/jacoco-it/jacoco.xml - - **/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/** - - - 0.8.5 - - - 1.8 - 1.8 - UTF-8 - UTF-8 - - /content/sites/site/${project.groupId}/${project.artifactId}/${project.version} - - - ${basedir}/src/main/resources/swagger.properties - - ${basedir}/src/main/resources/swagger.json - - - - https://nexus.onap.org - nexus.onap.org - 443 - https - https://nexus.onap.org/content/groups/public - https://nexus.onap.org/content/groups/staging - https://nexus.onap.org/content/repositories/releases - https://nexus.onap.org/content/repositories/snapshots - ecomp-staging - 176c31dfe190a - - 1.8 - 1.8 - 2.5.0 - 2.5.1 - features.xml - src/main/yang-gen-config - src/main/yang-gen-sal - true - - - 1.6.9 - - - (1.3.99999,1.4.99999-SNAPSHOT] - (1.3.99999, 1.4.99999-SNAPSHOT] - (1.3.99999, 1.4.99999-SNAPSHOT] - (1.4.99999, 1.5.99999-SNAPSHOT] - ${ccsdk.sli.version} - ${ccsdk.sli.version} - ${ccsdk.sli.version} - ${ccsdk.sli.version} - - - 2.3.12.RELEASE - 5.2.15.RELEASE - - - 1.8 - 1.3.61 - 1.3.61 - 1.3.3 - 1.5.0 - 0.5.0 - 2.6.6 - 2.2.3 - 1.9.3 - - - 4.8-1 - 2.6 - 4.4.14 - 4.5.13 - 10.14.2.0 - 1.0.0 - 1.25.0 - 2.0.39.Final - 3.10.0 - 3.10.0 - 2.30.1 - 2.30.1 - 1.3.8 - 2.17.1 - 2.17.1 - 1.2.3 - 2.7.3 - 2.4.0 - 1.7.25 - 2.9.2 - 6.14.3 - 9.0.46 - direct-dependencies.txt - - - - - - - org.onap.ccsdk.parent - dependencies-bom - 2.4.0-SNAPSHOT - pom - import - - - com.fasterxml.jackson - jackson-bom - 2.11.4 - pom - import - - - org.onap.ccsdk.sli.core - sli-common - ${ccsdk.sli.core.version} - - - org.onap.ccsdk.sli.core - sli-provider - ${ccsdk.sli.core.version} - - - org.onap.ccsdk.sli.core - ccsdk-sli - ${ccsdk.sli.core.version} - xml - features - - - org.onap.ccsdk.sli.core - dblib-provider - ${ccsdk.sli.core.version} - - - org.onap.ccsdk.sli.adaptors - aai-service-provider - ${ccsdk.sli.adaptors.version} - - - org.onap.logging-analytics - logging-slf4j - ${logging-analytics.version} - - - org.onap.logging-analytics - logging-filter-base - ${logging-analytics.version} - - - org.liquibase - liquibase-core - 4.4.2-nordix - - - org.apache.logging.log4j - log4j-api - ${log4j2.version} - - - org.apache.logging.log4j - log4j-core - ${log4j2.version} - - - - - - - onap-public - ${onap.nexus.public-url} - - true - never - - - true - always - - - - onap-staging - ${onap.nexus.staging-url} - - true - never - - - true - always - - - - ecomp-release - onap-repository-releases - ${onap.nexus.release-url} - - true - never - - - false - - - - ecomp-snapshot - onap-repository-snapshots - ${onap.nexus.snapshot-url} - - false - - - true - - - - - - - onap-public - ${onap.nexus.public-url} - - true - - - true - - - - onap-staging - ${onap.nexus.staging-url} - - true - - - true - - - - onap-snapshot - ${onap.nexus.snapshot-url} - - false - - - true - - - - - JCenter - JCenter Repository - http://jcenter.bintray.com - - - - Restlet - Restlet Repository - http://maven.restlet.com - - - - - - - - - org.apache.maven.plugins - maven-deploy-plugin - - 2.8 - - - true - - - - org.apache.maven.plugins - maven-site-plugin - 3.6 - - - org.apache.maven.wagon - wagon-webdav-jackrabbit - 2.10 - - - org.apache.maven.doxia - doxia-core - 1.7 - - - org.apache.maven.doxia - doxia-sink-api - 1.7 - - - org.apache.maven.doxia - doxia-logging-api - 1.7 - - - - - attach-descriptor - - attach-descriptor - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.17 - - - org.onap.oparent - checkstyle - 1.1.1 - - - - - check-license - - check - - process-sources - - onap-checkstyle/check-license.xml - onap-checkstyle/apache-license-2.regexp.txt - false - true - false - ${project.build.sourceDirectory} - - - false - true - - - - check-style - - check - - process-sources - - - onap-checkstyle/onap-java-style.xml - - ${project.build.sourceDirectory}/src/main/java - true - true - true - - - false - true - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.19.1 - - - ${surefireArgLine} - - - **/IT*.java - - - - - org.apache.maven.plugins - maven-failsafe-plugin - 2.19.1 - - - - integration-tests - - integration-test - verify - - - - ${failsafeArgLine} - - - - - - org.apache.maven.plugins - maven-compiler-plugin - ${maven.compile.plugin.version} - - ${java.version.source} - ${java.version.target} - - - - org.sonarsource.scanner.maven - sonar-maven-plugin - 3.6.0.1398 - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.2.0 - - - - org.slf4j - slf4j-api - ${slf4j.version} - - - org.antlr - antlr4 - ${antlr.version} - - - org.antlr - antlr4-runtime - ${antlr.version} - - - com.sun.jersey - jersey-client - ${jersey.client.version} - - - com.sun.jersey - jersey-core - ${jersey.version} - - - org.apache.httpcomponents - httpcore-osgi - ${apache.httpcomponents.core.version} - - - org.apache.httpcomponents - httpclient-osgi - ${apache.httpcomponents.client.version} - - - commons-lang - commons-lang - ${commons.lang.version} - - - false - - - - aggregate - - aggregate - - site - - - - - com.github.ferstl - depgraph-maven-plugin - 3.3.0 - - text - ${dependency-list.file} - ${project.basedir} - * - true - true - - - - - - - - - org.jacoco - jacoco-maven-plugin - ${jacoco.version} - - - pre-unit-test - - prepare-agent - - - - ${project.build.directory}/code-coverage/jacoco-ut.exec - - surefireArgLine - - - - - post-unit-test - test - - report - - - - ${project.build.directory}/code-coverage/jacoco-ut.exec - - ${project.reporting.outputDirectory}/jacoco-ut - - - - pre-integration-test - pre-integration-test - - prepare-agent - - - - ${project.build.directory}/code-coverage/jacoco-it.exec - - failsafeArgLine - - - - - post-integration-test - post-integration-test - - report - - - - ${project.build.directory}/code-coverage/jacoco-it.exec - - ${project.reporting.outputDirectory}/jacoco-it - - - - default-prepare-agent - - prepare-agent - - - - default-report - prepare-package - - report - - - - default-check - - check - - - - - PACKAGE - - - COMPLEXITY - COVEREDRATIO - 0.0 - - - - - - - - - - org.apache.maven.plugins - maven-deploy-plugin - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - org.codehaus.mojo - build-helper-maven-plugin - 1.12 - - - - org.apache.maven.plugins - maven-surefire-plugin - - - org.apache.maven.plugins - maven-failsafe-plugin - - - - - org.codehaus.mojo - properties-maven-plugin - 1.0.0 - - - - set-system-properties - - - - - maven.wagon.http.ssl.allowall - ${ssl.allowall} - - - maven.wagon.http.ssl.insecure - ${ssl.insecure} - - - - - - - - org.codehaus.mojo - versions-maven-plugin - 2.5 - - true - - - - maven-scm-plugin - 1.8.1 - - ${project.artifactId}-${project.version} - - - - pl.project13.maven - git-commit-id-plugin - 4.0.0 - - full - - ^git.build.(time|version)$ - ^git.commit.id.(abbrev|full)$ - - - - - - - - - - maven-javadoc-plugin - 2.10.4 - - false - org.umlgraph.doclet.UmlGraphDoc - - org.umlgraph - umlgraph - 5.6 - - -views - true - org.opendaylight.* - - - - - javadoc-no-fork - test-javadoc-no-fork - - - - aggregate - - aggregate - test-aggregate - - - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.3 - - - aggregate - - aggregate - test-aggregate - - - - - - maven-surefire-plugin - 2.17 - - - org.apache.maven.plugins - maven-changelog-plugin - 2.3 - - - dual-report - - range - 30 - - - changelog - file-activity - - - - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - - - - - - generate-json - - - ${swagger-properties} - - - swagger-sdk.generate-json - - - - - - org.codehaus.mojo - properties-maven-plugin - 1.0.0 - - - initialize - - read-project-properties - - - - ${basedir}/src/main/resources/swagger.properties - - - - - - - com.github.kongchen - swagger-maven-plugin - 3.1.4 - - - - ${api-rest-package} - http,https - ${api-host-ip}:${api-host-port} - ${api-base-path} - - ${api-title} - ${api-version} - ${api-description} - - ${api-license} - - - ${basedir}/src/main/resources - - - - - - compile - - generate - - - - - - org.apache.maven.plugins - maven-install-plugin - 2.3.1 - - - install-file-id - install - - install-file - - - ${basedir}/src/main/resources/swagger.json - ${project.groupId} - ${project.artifactId}-swagger-schema - ${project.version} - json - - - - - - - - - generate-sdk - - - ${swagger-json} - - - swagger-sdk.generate-java-sdk - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.8 - - - initialize - ant-create-script - - true - - - - - - - - - - - - - - - - - - - - - - - - - - run - - - - - - ant-contrib - ant-contrib - 1.0b3 - - - ant - ant - - - - - - - io.swagger - swagger-codegen-maven-plugin - 2.2.1 - - - - generate - - - ${basedir}/src/main/resources/swagger.json - ${project.build.directory}/generated-sources - java - - joda - - jersey2 - ${project.groupId} - ${project.artifactId}-java-sdk - ${project.version} - ${project.groupId}.${project.artifactId}.client.model - ${project.groupId}.${project.artifactId}.client.api - ${project.groupId}.${project.artifactId}.client.invoker - - - - - - org.codehaus.mojo - exec-maven-plugin - 1.5.0 - - - swagger-generate-sources - generate-sources - - exec - - - ${project.build.directory}${file.separator}${swagger.sdk.script.file} - - - - - - org.apache.maven.plugins - maven-clean-plugin - 3.0.0 - - - clean-generated-files - generate-sources - - clean - - - - - ${project.build.directory}/generated-sources - - - - - - - - - - - org.onap.msb.swagger-sdk - swagger-sdk - 1.0.0 - - - - - - q - - true - true - true - - true - true - true - true - true - true - true - true - true - true - true - true - true - true - true - true - true - true - true - true - - - - sonar-jacoco-aggregate - - - onap.jacoco.aggregateFile - - - - - - org.jacoco - jacoco-maven-plugin - - - merge - - merge - - generate-resources - - ${onap.jacoco.aggregateFile} - - - ${project.basedir} - - **/target/code-coverage/*.exec - - - - - - - - - - - - - diff --git a/springboot/springboot23/pom.xml b/springboot/springboot23/pom.xml new file mode 100644 index 00000000..d4323231 --- /dev/null +++ b/springboot/springboot23/pom.xml @@ -0,0 +1,1101 @@ + + + 4.0.0 + + + + org.springframework.boot + spring-boot-starter-parent + 2.3.12.RELEASE + + + + org.onap.ccsdk.parent + spring-boot-starter-parent + 2.4.0-SNAPSHOT + pom + + ONAP :: ${project.groupId} :: ${project.artifactId} + Root POM to be used in place of spring-boot parent for CCSDK based projects + http://wiki.onap.org + + ONAP + + + + JIRA + https://jira.onap.org/ + + + + + ecomp-releases + ${onap.nexus.release-url} + + + ecomp-snapshots + ${onap.nexus.snapshot-url} + + + + + + 3.7.0.1746 + 3.2 + jacoco + + ${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml,${project.reporting.outputDirectory}/jacoco-it/jacoco.xml + + **/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/** + + + 0.8.5 + + + 1.8 + 1.8 + UTF-8 + UTF-8 + + /content/sites/site/${project.groupId}/${project.artifactId}/${project.version} + + + ${basedir}/src/main/resources/swagger.properties + + ${basedir}/src/main/resources/swagger.json + + + + https://nexus.onap.org + nexus.onap.org + 443 + https + https://nexus.onap.org/content/groups/public + https://nexus.onap.org/content/groups/staging + https://nexus.onap.org/content/repositories/releases + https://nexus.onap.org/content/repositories/snapshots + ecomp-staging + 176c31dfe190a + + 1.8 + 1.8 + 2.5.0 + 2.5.1 + features.xml + src/main/yang-gen-config + src/main/yang-gen-sal + true + + + 1.6.9 + + + (1.3.99999,1.4.99999-SNAPSHOT] + (1.3.99999, 1.4.99999-SNAPSHOT] + (1.3.99999, 1.4.99999-SNAPSHOT] + (1.4.99999, 1.5.99999-SNAPSHOT] + ${ccsdk.sli.version} + ${ccsdk.sli.version} + ${ccsdk.sli.version} + ${ccsdk.sli.version} + + + 2.3.12.RELEASE + 5.2.15.RELEASE + + + 1.8 + 1.3.61 + 1.3.61 + 1.3.3 + 1.5.0 + 0.5.0 + 2.6.6 + 2.2.3 + 1.9.3 + + + 4.8-1 + 2.6 + 4.4.14 + 4.5.13 + 10.14.2.0 + 1.0.0 + 1.25.0 + 2.0.39.Final + 3.10.0 + 3.10.0 + 2.30.1 + 2.30.1 + 1.3.8 + 2.17.1 + 2.17.1 + 1.2.3 + 2.7.3 + 2.4.0 + 1.7.25 + 2.9.2 + 6.14.3 + 9.0.46 + direct-dependencies.txt + + + + + + + org.onap.ccsdk.parent + dependencies-bom + 2.4.0-SNAPSHOT + pom + import + + + com.fasterxml.jackson + jackson-bom + 2.11.4 + pom + import + + + org.onap.ccsdk.sli.core + sli-common + ${ccsdk.sli.core.version} + + + org.onap.ccsdk.sli.core + sli-provider + ${ccsdk.sli.core.version} + + + org.onap.ccsdk.sli.core + ccsdk-sli + ${ccsdk.sli.core.version} + xml + features + + + org.onap.ccsdk.sli.core + dblib-provider + ${ccsdk.sli.core.version} + + + org.onap.ccsdk.sli.adaptors + aai-service-provider + ${ccsdk.sli.adaptors.version} + + + org.onap.logging-analytics + logging-slf4j + ${logging-analytics.version} + + + org.onap.logging-analytics + logging-filter-base + ${logging-analytics.version} + + + org.liquibase + liquibase-core + 4.4.2-nordix + + + org.apache.logging.log4j + log4j-api + ${log4j2.version} + + + org.apache.logging.log4j + log4j-core + ${log4j2.version} + + + + + + + onap-public + ${onap.nexus.public-url} + + true + never + + + true + always + + + + onap-staging + ${onap.nexus.staging-url} + + true + never + + + true + always + + + + ecomp-release + onap-repository-releases + ${onap.nexus.release-url} + + true + never + + + false + + + + ecomp-snapshot + onap-repository-snapshots + ${onap.nexus.snapshot-url} + + false + + + true + + + + + + + onap-public + ${onap.nexus.public-url} + + true + + + true + + + + onap-staging + ${onap.nexus.staging-url} + + true + + + true + + + + onap-snapshot + ${onap.nexus.snapshot-url} + + false + + + true + + + + + JCenter + JCenter Repository + http://jcenter.bintray.com + + + + Restlet + Restlet Repository + http://maven.restlet.com + + + + + + + + + org.apache.maven.plugins + maven-deploy-plugin + + 2.8 + + + true + + + + org.apache.maven.plugins + maven-site-plugin + 3.6 + + + org.apache.maven.wagon + wagon-webdav-jackrabbit + 2.10 + + + org.apache.maven.doxia + doxia-core + 1.7 + + + org.apache.maven.doxia + doxia-sink-api + 1.7 + + + org.apache.maven.doxia + doxia-logging-api + 1.7 + + + + + attach-descriptor + + attach-descriptor + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 2.17 + + + org.onap.oparent + checkstyle + 1.1.1 + + + + + check-license + + check + + process-sources + + onap-checkstyle/check-license.xml + onap-checkstyle/apache-license-2.regexp.txt + false + true + false + ${project.build.sourceDirectory} + + + false + true + + + + check-style + + check + + process-sources + + + onap-checkstyle/onap-java-style.xml + + ${project.build.sourceDirectory}/src/main/java + true + true + true + + + false + true + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.19.1 + + + ${surefireArgLine} + + + **/IT*.java + + + + + org.apache.maven.plugins + maven-failsafe-plugin + 2.19.1 + + + + integration-tests + + integration-test + verify + + + + ${failsafeArgLine} + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven.compile.plugin.version} + + ${java.version.source} + ${java.version.target} + + + + org.sonarsource.scanner.maven + sonar-maven-plugin + 3.6.0.1398 + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.2.0 + + + + org.slf4j + slf4j-api + ${slf4j.version} + + + org.antlr + antlr4 + ${antlr.version} + + + org.antlr + antlr4-runtime + ${antlr.version} + + + com.sun.jersey + jersey-client + ${jersey.client.version} + + + com.sun.jersey + jersey-core + ${jersey.version} + + + org.apache.httpcomponents + httpcore-osgi + ${apache.httpcomponents.core.version} + + + org.apache.httpcomponents + httpclient-osgi + ${apache.httpcomponents.client.version} + + + commons-lang + commons-lang + ${commons.lang.version} + + + false + + + + aggregate + + aggregate + + site + + + + + com.github.ferstl + depgraph-maven-plugin + 3.3.0 + + text + ${dependency-list.file} + ${project.basedir} + * + true + true + + + + + + + + + org.jacoco + jacoco-maven-plugin + ${jacoco.version} + + + pre-unit-test + + prepare-agent + + + + ${project.build.directory}/code-coverage/jacoco-ut.exec + + surefireArgLine + + + + + post-unit-test + test + + report + + + + ${project.build.directory}/code-coverage/jacoco-ut.exec + + ${project.reporting.outputDirectory}/jacoco-ut + + + + pre-integration-test + pre-integration-test + + prepare-agent + + + + ${project.build.directory}/code-coverage/jacoco-it.exec + + failsafeArgLine + + + + + post-integration-test + post-integration-test + + report + + + + ${project.build.directory}/code-coverage/jacoco-it.exec + + ${project.reporting.outputDirectory}/jacoco-it + + + + default-prepare-agent + + prepare-agent + + + + default-report + prepare-package + + report + + + + default-check + + check + + + + + PACKAGE + + + COMPLEXITY + COVEREDRATIO + 0.0 + + + + + + + + + + org.apache.maven.plugins + maven-deploy-plugin + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + org.codehaus.mojo + build-helper-maven-plugin + 1.12 + + + + org.apache.maven.plugins + maven-surefire-plugin + + + org.apache.maven.plugins + maven-failsafe-plugin + + + + + org.codehaus.mojo + properties-maven-plugin + 1.0.0 + + + + set-system-properties + + + + + maven.wagon.http.ssl.allowall + ${ssl.allowall} + + + maven.wagon.http.ssl.insecure + ${ssl.insecure} + + + + + + + + org.codehaus.mojo + versions-maven-plugin + 2.5 + + true + + + + maven-scm-plugin + 1.8.1 + + ${project.artifactId}-${project.version} + + + + pl.project13.maven + git-commit-id-plugin + 4.0.0 + + full + + ^git.build.(time|version)$ + ^git.commit.id.(abbrev|full)$ + + + + + + + + + + maven-javadoc-plugin + 2.10.4 + + false + org.umlgraph.doclet.UmlGraphDoc + + org.umlgraph + umlgraph + 5.6 + + -views + true + org.opendaylight.* + + + + + javadoc-no-fork + test-javadoc-no-fork + + + + aggregate + + aggregate + test-aggregate + + + + + + org.apache.maven.plugins + maven-jxr-plugin + 2.3 + + + aggregate + + aggregate + test-aggregate + + + + + + maven-surefire-plugin + 2.17 + + + org.apache.maven.plugins + maven-changelog-plugin + 2.3 + + + dual-report + + range + 30 + + + changelog + file-activity + + + + + + org.codehaus.mojo + taglist-maven-plugin + 2.4 + + + + + + + + generate-json + + + ${swagger-properties} + + + swagger-sdk.generate-json + + + + + + org.codehaus.mojo + properties-maven-plugin + 1.0.0 + + + initialize + + read-project-properties + + + + ${basedir}/src/main/resources/swagger.properties + + + + + + + com.github.kongchen + swagger-maven-plugin + 3.1.4 + + + + ${api-rest-package} + http,https + ${api-host-ip}:${api-host-port} + ${api-base-path} + + ${api-title} + ${api-version} + ${api-description} + + ${api-license} + + + ${basedir}/src/main/resources + + + + + + compile + + generate + + + + + + org.apache.maven.plugins + maven-install-plugin + 2.3.1 + + + install-file-id + install + + install-file + + + ${basedir}/src/main/resources/swagger.json + ${project.groupId} + ${project.artifactId}-swagger-schema + ${project.version} + json + + + + + + + + + generate-sdk + + + ${swagger-json} + + + swagger-sdk.generate-java-sdk + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.8 + + + initialize + ant-create-script + + true + + + + + + + + + + + + + + + + + + + + + + + + + + run + + + + + + ant-contrib + ant-contrib + 1.0b3 + + + ant + ant + + + + + + + io.swagger + swagger-codegen-maven-plugin + 2.2.1 + + + + generate + + + ${basedir}/src/main/resources/swagger.json + ${project.build.directory}/generated-sources + java + + joda + + jersey2 + ${project.groupId} + ${project.artifactId}-java-sdk + ${project.version} + ${project.groupId}.${project.artifactId}.client.model + ${project.groupId}.${project.artifactId}.client.api + ${project.groupId}.${project.artifactId}.client.invoker + + + + + + org.codehaus.mojo + exec-maven-plugin + 1.5.0 + + + swagger-generate-sources + generate-sources + + exec + + + ${project.build.directory}${file.separator}${swagger.sdk.script.file} + + + + + + org.apache.maven.plugins + maven-clean-plugin + 3.0.0 + + + clean-generated-files + generate-sources + + clean + + + + + ${project.build.directory}/generated-sources + + + + + + + + + + + org.onap.msb.swagger-sdk + swagger-sdk + 1.0.0 + + + + + + q + + true + true + true + + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true + + + + sonar-jacoco-aggregate + + + onap.jacoco.aggregateFile + + + + + + org.jacoco + jacoco-maven-plugin + + + merge + + merge + + generate-resources + + ${onap.jacoco.aggregateFile} + + + ${project.basedir} + + **/target/code-coverage/*.exec + + + + + + + + + + + + + diff --git a/springboot/springboot25/pom.xml b/springboot/springboot25/pom.xml index d7e828da..c946d46a 100644 --- a/springboot/springboot25/pom.xml +++ b/springboot/springboot25/pom.xml @@ -2,7 +2,9 @@ 4.0.0 - + org.springframework.boot spring-boot-starter-parent @@ -16,7 +18,7 @@ pom ONAP :: ${project.groupId} :: ${project.artifactId} - Root POM to be used in place of spring-boot parent for CCSDK based projects (Spring-boot 2.5) + Root POM to be used in place of spring-boot parent for CCSDK based projects http://wiki.onap.org ONAP @@ -77,7 +79,7 @@ 11 2.5.0 - 3.8.1 + 3.8.1 features.xml src/main/yang-gen-config src/main/yang-gen-sal @@ -87,10 +89,10 @@ 1.6.9 - (1.1.99999,1.2.99999-SNAPSHOT) - (1.1.99999, 1.2.99999-SNAPSHOT) - (1.1.99999, 1.2.99999-SNAPSHOT) - 1.3.1 + (1.3.99999,1.4.99999-SNAPSHOT] + (1.3.99999, 1.4.99999-SNAPSHOT] + (1.3.99999, 1.4.99999-SNAPSHOT] + (1.4.99999, 1.5.99999-SNAPSHOT] ${ccsdk.sli.version} ${ccsdk.sli.version} ${ccsdk.sli.version} @@ -197,7 +199,7 @@ org.liquibase liquibase-core 4.4.2-nordix - + @@ -435,7 +437,7 @@ org.apache.maven.plugins maven-compiler-plugin - ${maven-compiler-plugin.version} + ${maven.compile.plugin.version} ${java.version} @@ -1085,4 +1087,4 @@ - \ No newline at end of file + diff --git a/springboot/springboot26/pom.xml b/springboot/springboot26/pom.xml index d23cf3a7..532b17ed 100644 --- a/springboot/springboot26/pom.xml +++ b/springboot/springboot26/pom.xml @@ -1,7 +1,8 @@ 4.0.0 - @@ -17,7 +18,7 @@ pom ONAP :: ${project.groupId} :: ${project.artifactId} - Root POM to be used in place of spring-boot parent for CCSDK based projects (Spring-boot 2.6) + Root POM to be used in place of spring-boot parent for CCSDK based projects http://wiki.onap.org ONAP @@ -78,7 +79,7 @@ 11 2.5.0 - 3.8.1 + 3.8.1 features.xml src/main/yang-gen-config src/main/yang-gen-sal @@ -88,10 +89,10 @@ 1.6.9 - (1.1.99999,1.2.99999-SNAPSHOT) - (1.1.99999, 1.2.99999-SNAPSHOT) - (1.1.99999, 1.2.99999-SNAPSHOT) - 1.3.1 + (1.3.99999,1.4.99999-SNAPSHOT] + (1.3.99999, 1.4.99999-SNAPSHOT] + (1.3.99999, 1.4.99999-SNAPSHOT] + (1.4.99999, 1.5.99999-SNAPSHOT] ${ccsdk.sli.version} ${ccsdk.sli.version} ${ccsdk.sli.version} @@ -99,6 +100,7 @@ 2.6.6 + 5.3.18 1.8 @@ -197,7 +199,7 @@ org.liquibase liquibase-core 4.4.2-nordix - + @@ -435,7 +437,7 @@ org.apache.maven.plugins maven-compiler-plugin - ${maven-compiler-plugin.version} + ${maven.compile.plugin.version} ${java.version} -- cgit 1.2.3-korg