Add root pom for utils modules. 99/16099/1
authorSam Hague <shague@redhat.com>
Thu, 5 Mar 2015 22:08:37 +0000 (17:08 -0500)
committerSam Hague <shague@redhat.com>
Thu, 5 Mar 2015 22:08:37 +0000 (17:08 -0500)
Change-Id: Ie79324278f7588a7516c0aa82e0d0e00fe4ccf5c
Signed-off-by: Sam Hague <shague@redhat.com>
pom.xml
utils/pom.xml [new file with mode: 0644]

diff --git a/pom.xml b/pom.xml
index 9b4ee9cf1fbd58cfe245afd2b73f77563cef6e80..1054e7a38ba215ec991a80160473e978a76fb686 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -45,8 +45,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
     <module>schemas/hardwarevtep</module>
     <module>schemas/openvswitch</module>
     <module>southbound</module>
-    <module>utils/config</module>
-    <module>utils/mdsal-openflow</module>
+    <module>utils</module>
     <!-- Integration Tests -->
     <module>integrationtest</module>
   </modules>
diff --git a/utils/pom.xml b/utils/pom.xml
new file mode 100644 (file)
index 0000000..34b1da1
--- /dev/null
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Copyright (C) 2015 Red Hat, Inc. and others. 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
+-->
+<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>
+    <artifactId>commons</artifactId>
+    <groupId>org.opendaylight.ovsdb</groupId>
+    <version>1.3.0-SNAPSHOT</version>
+    <relativePath>../commons/parent/pom.xml</relativePath>
+  </parent>
+
+  <artifactId>utils</artifactId>
+  <version>1.0.0-SNAPSHOT</version>
+  <name>${project.artifactId}</name>
+  <packaging>pom</packaging>
+
+  <prerequisites>
+    <maven>3.1.1</maven>
+  </prerequisites>
+  <modules>
+    <module>config</module>
+    <module>mdsal-openflow</module>
+  </modules>
+</project>