From 94d7d990ac85143fd3605c9a094082592d554e2a Mon Sep 17 00:00:00 2001 From: liboNet Date: Thu, 21 Mar 2019 08:01:55 +0800 Subject: add rest serve and distribution framework . update the pom.xml to include a submodule main . add all common necessnary package into pom.xml . add rest server and test case . port the distribution framework . which supports both http and https Change-Id: I5ccc712342fc8929d11e553f3e09f36e93a80935 Issue-ID: MULTICLOUD-546 Signed-off-by: liboNet --- artifactbroker/pom.xml | 187 ++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 185 insertions(+), 2 deletions(-) (limited to 'artifactbroker/pom.xml') diff --git a/artifactbroker/pom.xml b/artifactbroker/pom.xml index a49dbc4..971eac7 100644 --- a/artifactbroker/pom.xml +++ b/artifactbroker/pom.xml @@ -19,18 +19,201 @@ org.onap.multicloud.framework multicloud-framework 1.3.0-SNAPSHOT + 4.0.0 org.onap.multicloud.framework.broker - multicloud-framework-artifact-broker + multicloud-framework-artifactbroker 1.3.0-SNAPSHOT pom - multicloud-framework-artifact-broker + multicloud-framework-artifactbroker artifact broker UTF-8 UTF-8 UTF-8 https://nexus.onap.org + 1.2.3 + 1.3.4 + 1.3.5 + + + main + + + + junit + junit + 4.12 + test + + + org.slf4j + slf4j-ext + 1.8.0-beta2 + + + org.slf4j + slf4j-api + 1.7.25 + + + ch.qos.logback + logback-core + ${version.logback} + + + ch.qos.logback + logback-classic + ${version.logback} + + + org.onap.policy.common + common-parameters + ${policy.common.version} + + + org.onap.policy.common + ONAP-Logging + ${policy.common.version} + + + org.onap.policy.common + capabilities + ${policy.common.version} + + + org.onap.policy.common + policy-endpoints + ${policy.common.version} + + + org.onap.policy.common + utils + ${policy.common.version} + + + commons-cli + commons-cli + 1.4 + + + com.google.code.gson + gson + 2.8.4 + + + + + + + org.jacoco + jacoco-maven-plugin + + + pre-unit-test + + prepare-agent + + + ${sonar.jacoco.reportPath} + true + + + + post-unit-test + test + + report + + + ${sonar.jacoco.reportPath} + + + + + + maven-checkstyle-plugin + + + onap-java-style + + check + + process-sources + + + onap-checkstyle/onap-java-style.xml + + ${project.build.sourceDirectory} + true + true + true + + + true + true + warning + + + + + + org.onap.oparent + checkstyle + 1.2.0 + compile + + + + + + + + org.jacoco + jacoco-maven-plugin + ${jacoco.version} + + + + **/gen/** + **/generated-sources/** + **/yang-gen/** + **/pax/** + + + + + + pre-unit-test + + prepare-agent + + + ${sonar.jacoco.reportPath} + + + + + post-unit-test + test + + report + + + ${sonar.jacoco.reportPath} + + + + + + + + -- cgit 1.2.3-korg