From ab6c2c0cd441cf40723016e9a82aeeeb933fec7e Mon Sep 17 00:00:00 2001 From: Skip Wonnell Date: Mon, 14 Aug 2017 17:47:10 -0500 Subject: Initial adds artifact handler and design services asdc-artifact-handler: an interface to receive artifacts distributed by SDC and persist them into the local database. appc-design-services: an interface to manage VNF configuration artifacts, primarily those generated by the configuration design tool. Includes these user stories: APPC-28/85 Change-Id: Ib207070d4593554fa424fc69d9c77a6cd5349fec Signed-off-by: Skip Wonnell Issue-Id: APPC-9 --- appc-inbound/appc-artifact-handler/model/pom.xml | 158 +++++++++++++++++++++++ 1 file changed, 158 insertions(+) create mode 100755 appc-inbound/appc-artifact-handler/model/pom.xml (limited to 'appc-inbound/appc-artifact-handler/model/pom.xml') diff --git a/appc-inbound/appc-artifact-handler/model/pom.xml b/appc-inbound/appc-artifact-handler/model/pom.xml new file mode 100755 index 000000000..7b9402d8f --- /dev/null +++ b/appc-inbound/appc-artifact-handler/model/pom.xml @@ -0,0 +1,158 @@ + + + 4.0.0 + + appc-artifact-handler + org.openecomp.appc + 1.1.0-SNAPSHOT + + appc-artifact-handler-model + bundle + + + + + + org.apache.felix + maven-bundle-plugin + true + + + * + + + + + org.opendaylight.yangtools + yang-maven-plugin + + + org.opendaylight.mdsal + maven-sal-api-gen-plugin + + ${odl.sal.api.gen.plugin.version} + jar + + + + + + generate-sources + + + ${yang.file.directory} + + + org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl + ${salGeneratorPath} + + + true + + + + + + org.codehaus.mojo + exec-maven-plugin + 1.2.1 + + + + python + + scripts/python/yang2props.py + src/main/yang/artifact-handler.yang + target/artifact-handler.properties + + + generation + generate-resources + + exec + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + attach-artifacts + + attach-artifact + + package + + + + ${project.build.directory}/artifact-handler.properties + properties + artifact-handler + + + + + + + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + + org.codehaus.mojo + + + exec-maven-plugin + + + [1.2.1,) + + + exec + + + + + + + + + + + + + + + + org.opendaylight.mdsal + yang-binding + + + org.opendaylight.yangtools + yang-common + + + org.opendaylight.mdsal.model + ietf-inet-types + ${odl.ietf-inet-types.version} + + + org.opendaylight.mdsal.model + ietf-yang-types + ${odl.ietf-yang-types.version} + + + -- cgit 1.2.3-korg