Create restconf-artifacts 29/25529/7
authorTomas Cere <tcere@cisco.com>
Thu, 20 Aug 2015 08:36:00 +0000 (10:36 +0200)
committerTomas Cere <tcere@cisco.com>
Mon, 24 Aug 2015 06:46:44 +0000 (08:46 +0200)
Change-Id: I7aa99cd8ab914e4c9a96822b7b893dbda5a3fc1b
Signed-off-by: Tomas Cere <tcere@cisco.com>
opendaylight/restconf/pom.xml
opendaylight/restconf/restconf-artifacts/pom.xml [new file with mode: 0644]

index f3655a0d0aea9790654397c73625cf65cdb6afd6..f28fe17239783cd2c2ea71b88a78cbdd5790cbac 100644 (file)
@@ -10,7 +10,6 @@
     </parent>
     <artifactId>restconf-parent</artifactId>
     <version>1.3.0-SNAPSHOT</version>
-
     <packaging>pom</packaging>
     <name>${project.artifactId}</name>
 
@@ -20,6 +19,7 @@
         <module>sal-rest-docgen</module>
         <module>sal-rest-docgen-maven</module>
         <module>sal-restconf-broker</module>
+        <module>restconf-artifacts</module>
     </modules>
 
     <dependencyManagement>
                 <type>pom</type>
                 <scope>import</scope>
             </dependency>
+            <dependency>
+                <groupId>org.opendaylight.netconf</groupId>
+                <artifactId>restconf-artifacts</artifactId>
+                <version>${project.version}</version>
+                <type>pom</type>
+                <scope>import</scope>
+            </dependency>
 
             <dependency>
                 <groupId>org.apache.maven</groupId>
diff --git a/opendaylight/restconf/restconf-artifacts/pom.xml b/opendaylight/restconf/restconf-artifacts/pom.xml
new file mode 100644 (file)
index 0000000..a581086
--- /dev/null
@@ -0,0 +1,42 @@
+<?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>
+    <groupId>org.opendaylight.netconf</groupId>
+    <artifactId>restconf-artifacts</artifactId>
+    <version>1.3.0-SNAPSHOT</version>
+    <packaging>pom</packaging>
+
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>sal-rest-connector</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>sal-rest-connector-config</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>sal-rest-docgen</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>sal-rest-docgen-maven</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>sal-restconf-broker</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
+
+</project>
\ No newline at end of file