From bad772074d0bfd4c4dcb7bdd2cbe9ca7246fc28e Mon Sep 17 00:00:00 2001 From: Jack Lucas Date: Mon, 3 Feb 2020 18:21:29 -0500 Subject: Move k8s-bootstrap container to blueprints repo Cleanup of unnecessary input templates and other files Use non-templatized blueprints instead of blueprint templates Copy blueprints from blueprints/ directory into image Move reference_templates to top-level directory Issue-ID: DCAEGEN2-2041 Signed-off-by: Jack Lucas Change-Id: Ib846a96a4995eb97383f63ff764705e6277a24b0 --- pom.xml | 117 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 107 insertions(+), 10 deletions(-) (limited to 'pom.xml') diff --git a/pom.xml b/pom.xml index c0caee5..9f97f47 100644 --- a/pom.xml +++ b/pom.xml @@ -25,16 +25,12 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property. oparent 1.2.0 - org.onap.dcaegen2.platform - blueprints - dcaegen2-platform-blueprints - 1.2.0-SNAPSHOT + org.onap.dcaegen2.deployments + k8s-bootstrap-container + dcaegen2-deployments-k8s-bootstrap-container + 1.9.0-SNAPSHOT http://maven.apache.org pom - - blueprints - input-templates - https://nexus.onap.org @@ -92,7 +88,7 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property. - org.apache.maven.plugins @@ -123,7 +119,7 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property. - org.apache.maven.plugins @@ -173,5 +169,106 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property. + + + + 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