moved the legato yang files to a new bundle 16/40516/1
authorDavid Goldberg <gdavid@hpe.com>
Sun, 19 Jun 2016 07:54:13 +0000 (10:54 +0300)
committerDavid Goldberg <gdavid@hpe.com>
Sun, 19 Jun 2016 07:54:13 +0000 (10:54 +0300)
Change-Id: I9b0df5bb183d8403d9d5afbcb6ab9240d3535b83
Signed-off-by: David Goldberg <gdavid@hpe.com>
legato-api/.gitignore [new file with mode: 0644]
legato-api/pom.xml [new file with mode: 0644]
legato-api/src/main/yang/mef-global.yang [moved from api/src/main/yang/mef-global.yang with 100% similarity]
legato-api/src/main/yang/mef-interfaces.yang [moved from api/src/main/yang/mef-interfaces.yang with 100% similarity]
legato-api/src/main/yang/mef-services.yang [moved from api/src/main/yang/mef-services.yang with 100% similarity]
legato-api/src/main/yang/mef-topology.yang [moved from api/src/main/yang/mef-topology.yang with 100% similarity]
legato-api/src/main/yang/mef-types.yang [moved from api/src/main/yang/mef-types.yang with 100% similarity]
pom.xml

diff --git a/legato-api/.gitignore b/legato-api/.gitignore
new file mode 100644 (file)
index 0000000..b83d222
--- /dev/null
@@ -0,0 +1 @@
+/target/
diff --git a/legato-api/pom.xml b/legato-api/pom.xml
new file mode 100644 (file)
index 0000000..4acedb3
--- /dev/null
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Copyright (c) 2015 Cable Television Laboratories, Inc. All rights reserved.
+
+This program and the accompanying materials are made available under the
+terms of the Eclipse Public License v1.0 which accompanies this distribution,
+and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
+-->
+<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">
+  <parent>
+    <groupId>org.opendaylight.mdsal</groupId>
+    <artifactId>binding-parent</artifactId>
+    <version>0.9.0-SNAPSHOT</version>
+    <relativePath/>
+  </parent>
+
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.opendaylight.unimgr</groupId>
+  <artifactId>unimgr-legato-api</artifactId>
+  <version>0.1.0-SNAPSHOT</version>
+  <packaging>bundle</packaging>
+
+  <properties>
+    <ovsdb.version>1.3.0-SNAPSHOT</ovsdb.version>
+  </properties>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.opendaylight.mdsal.model</groupId>
+      <artifactId>ietf-yang-types-20130715</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.opendaylight.mdsal.model</groupId>
+      <artifactId>ietf-topology</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.opendaylight.mdsal.model</groupId>
+      <artifactId>yang-ext</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.opendaylight.ovsdb</groupId>
+      <artifactId>southbound-api</artifactId>
+      <version>${ovsdb.version}</version>
+    </dependency>
+  </dependencies>
+
+</project>
diff --git a/pom.xml b/pom.xml
index 9b5ba65d2a91cc8fb3e14e20bbb294bdbb7836ba..32dc02194a73418d8643dcbad4844141be57d3f3 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -58,6 +58,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
       <id>main</id>
       <modules>
         <module>api</module>
+        <module>legato-api</module>
         <module>impl</module>
         <module>cisco-xr-driver</module>
         <module>cli</module>