From 0e903b99b3e003aed6e3124284b80634e20c42fb Mon Sep 17 00:00:00 2001 From: Lusheng Ji Date: Thu, 21 Sep 2017 04:19:47 +0000 Subject: Add script for uploading schema artifacts Issue-Id: DCAEGEN2-60 Change-Id: If51aacf59ec5c556f4bc37a7c02af2ac8c66edd5 Signed-off-by: Lusheng Ji --- component-json-schemas/pom.xml | 246 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 246 insertions(+) create mode 100644 component-json-schemas/pom.xml (limited to 'component-json-schemas') diff --git a/component-json-schemas/pom.xml b/component-json-schemas/pom.xml new file mode 100644 index 0000000..81e02da --- /dev/null +++ b/component-json-schemas/pom.xml @@ -0,0 +1,246 @@ + + + + 4.0.0 + + org.onap.dcaegen2.platform.cli + cli + 1.0.0-SNAPSHOT + + org.onap.dcaegen2.platform.cli + component-json-schemas + dcaegen2-platform-cli-component-json-schemas + 1.0.0-SNAPSHOT + http://maven.apache.org + + UTF-8 + . + + + + + py + Python + **/*.py + + + + + ${project.artifactId}-${project.version} + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.7 + + true + + + + org.apache.maven.plugins + maven-deploy-plugin + + 2.8 + + true + + + + + + org.apache.maven.plugins + maven-resources-plugin + 2.6 + + true + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.1 + + true + + + + + org.apache.maven.plugins + maven-jar-plugin + 2.4 + + + default-jar + + + + + + + org.apache.maven.plugins + maven-install-plugin + 2.4 + + true + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.12.4 + + true + + + + + + + + + org.codehaus.mojo + exec-maven-plugin + 1.2.1 + + + clean phase script + clean + + exec + + + + ${project.artifactId} + clean + + + + + generate-sources script + generate-sources + + exec + + + + ${project.artifactId} + generate-sources + + + + + compile script + compile + + exec + + + + ${project.artifactId} + compile + + + + + package script + package + + exec + + + + ${project.artifactId} + package + + + + + test script + test + + exec + + + + ${project.artifactId} + test + + + + + install script + install + + exec + + + + ${project.artifactId} + install + + + + + deploy script + deploy + + exec + + + + ${project.artifactId} + deploy + + + + + + + + -- cgit 1.2.3-korg