From 72c858b2cdd48e9cb7e2a92086ffecc055b16df6 Mon Sep 17 00:00:00 2001 From: "Singal, Kapil (ks220y)" Date: Tue, 4 Sep 2018 23:31:58 -0400 Subject: SDNC Blueprints Processor - Feature Creating SDN Controller Blueprints Processor Feature Change-Id: If00efe04ca22ff1c4d07f16f69cd946ea20f8f86 Issue-ID: CCSDK-519 Signed-off-by: Singal, Kapil (ks220y) --- blueprints-processor/features/pom.xml | 109 +++++++++++++++++++++ .../features/src/main/resources/features.xml | 71 ++++++++++++++ 2 files changed, 180 insertions(+) create mode 100644 blueprints-processor/features/pom.xml create mode 100644 blueprints-processor/features/src/main/resources/features.xml diff --git a/blueprints-processor/features/pom.xml b/blueprints-processor/features/pom.xml new file mode 100644 index 000000000..5b9ecfc10 --- /dev/null +++ b/blueprints-processor/features/pom.xml @@ -0,0 +1,109 @@ + + + + + 4.0.0 + + org.onap.ccsdk.config + blueprints-processor + 0.0.1-SNAPSHOT + + + blueprints-processor-features + jar + Blueprints Processor - Features + + + + org.onap.ccsdk.config + blueprints-data-adaptor-provider + + + org.onap.ccsdk.config + blueprints-rest-adaptor-provider + + + org.onap.ccsdk.config + blueprints-assignment-provider + + + org.onap.ccsdk.config + blueprints-generator-provider + + + org.onap.ccsdk.config + blueprints-model-provider + + + + org.opendaylight.mdsal + features-mdsal + features + xml + runtime + + + + + + + true + src/main/resources + + + + + org.apache.maven.plugins + maven-resources-plugin + + + filter + + resources + + generate-resources + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + attach-artifacts + + attach-artifact + + package + + + + ${project.build.directory}/classes/${features.file} + xml + features + + + + + + + + + diff --git a/blueprints-processor/features/src/main/resources/features.xml b/blueprints-processor/features/src/main/resources/features.xml new file mode 100644 index 000000000..4375fa9ed --- /dev/null +++ b/blueprints-processor/features/src/main/resources/features.xml @@ -0,0 +1,71 @@ + + + + + + mvn:org.opendaylight.mdsal/features-mdsal/${odl.mdsal.features.version}/xml/features + + + ccsdk-sli + + wrap:mvn:com.jcraft/jsch/${jsch.version} + wrap:mvn:com.jayway.jsonpath/json-path/${jsonpath.version} + + wrap:mvn:org.json/json/${org.json.version} + wrap:mvn:org.yaml/snakeyaml/${snakeyaml.version} + wrap:mvn:org.apache.velocity/velocity/${velocity.version} + + wrap:mvn:commons-io/commons-io/${common.io.version} + wrap:mvn:net.minidev/json-smart/${json-smart.version} + wrap:mvn:net.minidev/accessors-smart/${accessors-smart.version} + + mvn:commons-lang/commons-lang/${commons.lang.version} + mvn:commons-collections/commons-collections/${common.collections.version} + + wrap:mvn:com.fasterxml.jackson.core/jackson-core/${jackson.version} + wrap:mvn:com.fasterxml.jackson.core/jackson-databind/${jackson.version} + wrap:mvn:com.fasterxml.jackson.core/jackson-annotations/${jackson.version} + wrap:mvn:com.fasterxml.jackson.dataformat/jackson-dataformat-xml/${jackson.version} + wrap:mvn:com.fasterxml.jackson.dataformat/jackson-dataformat-yaml/${jackson.version} + wrap:mvn:com.fasterxml.jackson.module/jackson-module-jsonSchema/${jackson.version} + wrap:mvn:com.fasterxml.jackson.module/jackson-module-jaxb-annotations/${jackson.version} + + + + blueprints-processor-dependency + mvn:org.onap.ccsdk.config/blueprints-rest-adaptor-provider/${project.version} + mvn:org.onap.ccsdk.config/blueprints-data-adaptor-provider/${project.version} + mvn:org.onap.ccsdk.config/blueprints-model-provider/${project.version} + + + + blueprints-processor-libs + mvn:org.onap.ccsdk.config/blueprints-generator-provider/${project.version} + mvn:org.onap.ccsdk.config/blueprints-assignment-provider/${project.version} + + + -- cgit 1.2.3-korg