From 230ae894c1b2f489e31d6a0d9f7db99cf6b65cbe Mon Sep 17 00:00:00 2001 From: Jack Lucas Date: Tue, 27 Mar 2018 00:04:46 -0400 Subject: Add k8s bootstrap container Change-Id: Ib21bd80a1e43d1005974527cecf93e99462e94fa Issue-ID: DCAEGEN2-421 Signed-off-by: Jack Lucas --- k8s-bootstrap-container/pom.xml | 172 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 172 insertions(+) create mode 100644 k8s-bootstrap-container/pom.xml (limited to 'k8s-bootstrap-container/pom.xml') diff --git a/k8s-bootstrap-container/pom.xml b/k8s-bootstrap-container/pom.xml new file mode 100644 index 0000000..6046a9c --- /dev/null +++ b/k8s-bootstrap-container/pom.xml @@ -0,0 +1,172 @@ + + + + 4.0.0 + + org.onap.dcaegen2.deployments + deployments + 1.2.0-SNAPSHOT + + org.onap.dcaegen2.deployments + k8s-bootstrap-container + dcaegen2-deployments-k8s-bootstrap-container + 1.0.0 + http://maven.apache.org + + UTF-8 + true + . + + + + + py + Python + **/*.py + + + + + ${project.artifactId}-${project.version} + + + + + 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