From 4318ad160fa6ee1d75c395f4409e209f5da36f53 Mon Sep 17 00:00:00 2001 From: "Arun S. Yerra" Date: Mon, 11 Sep 2017 18:57:40 -0700 Subject: Implement framework to process REST notifications Global SDNC controller needs information about network Devices (mostly PNFs) so as to instantiate/configure service. Domain Controllers control/manage the network devices within the fabric. This task is to implement RESTCONF notification processing framework, so that Global SDNC controller can process notifications from Domain controllers. Change-Id: Ia5edb5006ac3fd4ec71e55f92a05e79e40ce76d2 Issue-Id: CCSDK-88 Signed-off-by: Arun S. Yerra --- fabric-discovery-plugin/features/pom.xml | 135 +++++++++++++++++++++ .../features/src/main/resources/features.xml | 40 ++++++ 2 files changed, 175 insertions(+) create mode 100755 fabric-discovery-plugin/features/pom.xml create mode 100644 fabric-discovery-plugin/features/src/main/resources/features.xml (limited to 'fabric-discovery-plugin/features') diff --git a/fabric-discovery-plugin/features/pom.xml b/fabric-discovery-plugin/features/pom.xml new file mode 100755 index 00000000..2e0b0d94 --- /dev/null +++ b/fabric-discovery-plugin/features/pom.xml @@ -0,0 +1,135 @@ + + + 4.0.0 + + fabric-discovery-plugin + org.onap.ccsdk.sli.plugins + 0.1.0-SNAPSHOT + + org.onap.ccsdk.sli.plugins + 0.1.0-SNAPSHOT + fabric-discovery-plugin-features + Fabric Discovery Plugin - Features + + jar + + + + + org.onap.ccsdk.sli.plugins + fabric-discovery-plugin-provider + ${project.version} + + + + commons-lang + commons-lang + 2.6 + compile + + + + org.opendaylight.mdsal + features-mdsal + ${odl.mdsal.features.version} + features + xml + + runtime + + + + + + org.opendaylight.controller + opendaylight-karaf-empty + ${odl.karaf.empty.distro.version} + zip + + + + + + org.opendaylight.odlparent + features-test + ${odl.commons.opendaylight.version} + test + + + + org.opendaylight.yangtools + features-yangtools + ${odl.yangtools.version} + 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/fabric-discovery-plugin/features/src/main/resources/features.xml b/fabric-discovery-plugin/features/src/main/resources/features.xml new file mode 100644 index 00000000..0750c438 --- /dev/null +++ b/fabric-discovery-plugin/features/src/main/resources/features.xml @@ -0,0 +1,40 @@ + + + + + + + mvn:org.opendaylight.mdsal/features-mdsal/${odl.mdsal.features.version}/xml/features + + + sdnc-sli + spring + spring-dm + mvn:com.sun.jersey/jersey-client/${jersey.version} + mvn:org.codehaus.jettison/jettison/${jettison.version} + mvn:org.onap.ccsdk.sli.plugins/fabric-discovery-plugin-provider/${project.version} + + + -- cgit 1.2.3-korg