Bug 1277 - Move ByteBuffUtils to separate bundle 52/8552/1
authorMartin Bobak <mbobak@cisco.com>
Wed, 2 Jul 2014 13:36:14 +0000 (15:36 +0200)
committerMartin Bobak <mbobak@cisco.com>
Wed, 2 Jul 2014 13:36:17 +0000 (15:36 +0200)
- bundle project directory created
- added dependency on util bundle to openflow-protocol-impl

Signed-off-by: Martin Bobak <mbobak@cisco.com>
openflow-protocol-impl/pom.xml
pom.xml
util/pom.xml [new file with mode: 0644]

index daee93f07d6858cb3d744038d2998c31da5576eb..ca5eb1e9d45bd4d2ad9fa1d546ef6bde3c7e79ad 100644 (file)
             <artifactId>openflow-protocol-spi</artifactId>
             <version>${project.version}</version>
         </dependency>
+        <dependency>
+            <groupId>org.opendaylight.openflowjava</groupId>
+            <artifactId>util</artifactId>
+            <version>${project.version}</version>
+        </dependency>
         <dependency>
             <groupId>org.opendaylight.controller</groupId>
             <artifactId>sal-common-util</artifactId>
diff --git a/pom.xml b/pom.xml
index 99c9e048b507dc5b491c41cc8fea039e0e066748..d79caac1c18871b6a4e4eaa362e163a56b77680f 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -8,6 +8,7 @@
     <modules>
         <module>openflow-protocol-api</module>
         <module>openflow-protocol-spi</module>
+        <module>util</module>
         <module>openflow-protocol-impl</module>
         <module>openflow-protocol-it</module>
         <module>feature</module>
diff --git a/util/pom.xml b/util/pom.xml
new file mode 100644 (file)
index 0000000..cca2855
--- /dev/null
@@ -0,0 +1,20 @@
+<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/maven-v4_0_0.xsd">
+
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.opendaylight.openflowjava</groupId>
+        <artifactId>openflow-protocol-parent</artifactId>
+        <version>0.5-SNAPSHOT</version>
+    </parent>
+    <packaging>bundle</packaging>
+    <artifactId>util</artifactId>
+
+    <dependencies>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+</project>