diff options
author | Sandeep Shah <sandeep.shah2@techmahindra.com> | 2019-03-09 07:26:17 -0600 |
---|---|---|
committer | Sandeep Shah <sandeep.shah2@techmahindra.com> | 2019-03-09 07:26:17 -0600 |
commit | caf781999351fc6a3e2acb5b2fe47fe04a291d2d (patch) | |
tree | 5a7fdade4390234005b007c39427d935b0552032 /sdnr/northbound/oofpcipoc/model/pom.xml | |
parent | 16f322b6f8d5ab0d0d7b55d2e626e18afcba53f1 (diff) |
YANG Models for Dublin SDNR OOF PCI ANR Use Case
oofpcipoc.yang model to support configuration of RAN related parameters
and oofpcipoc-api.yang model to support north-bound RPC's
Change-Id: Ibe7f90ca054bb71de29ed88889013afdb2d76a7f
Issue-ID: SDNC-430
Signed-off-by: SadeepLinux <sandeep.shah2@techmahindra.com>
Diffstat (limited to 'sdnr/northbound/oofpcipoc/model/pom.xml')
-rw-r--r-- | sdnr/northbound/oofpcipoc/model/pom.xml | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/sdnr/northbound/oofpcipoc/model/pom.xml b/sdnr/northbound/oofpcipoc/model/pom.xml new file mode 100644 index 000000000..6c1bffa7e --- /dev/null +++ b/sdnr/northbound/oofpcipoc/model/pom.xml @@ -0,0 +1,58 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.onap.ccsdk.parent</groupId> + <artifactId>binding-parent</artifactId> + <version>1.2.1-SNAPSHOT</version> + <relativePath /> + </parent> + + <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId> + <artifactId>oofpcipoc-model</artifactId> + <version>0.4.1-SNAPSHOT</version> + <packaging>bundle</packaging> + + <dependencies> + <dependency> + <groupId>org.opendaylight.mdsal.model</groupId> + <artifactId>ietf-inet-types-2013-07-15</artifactId> + </dependency> + <dependency> + <groupId>org.opendaylight.mdsal.model</groupId> + <artifactId>ietf-yang-types-20130715</artifactId> + </dependency> + </dependencies> + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.eclipse.m2e</groupId> + <artifactId>lifecycle-mapping</artifactId> + <version>1.0.0</version> + <configuration> + <lifecycleMappingMetadata> + <pluginExecutions> + <pluginExecution> + <pluginExecutionFilter> + <groupId>org.codehaus.mojo</groupId> + <artifactId>properties-maven-plugin</artifactId> + <versionRange>[1.0.0,)</versionRange> + <goals> + <goal>set-system-properties</goal> + </goals> + </pluginExecutionFilter> + <action> + <execute /> + </action> + </pluginExecution> + </pluginExecutions> + </lifecycleMappingMetadata> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> +</project> |