Bug 1764 - created new bundle responsible for default OF switch configuration 19/12019/2
authorMartin Bobak <mbobak@cisco.com>
Tue, 14 Oct 2014 11:44:59 +0000 (13:44 +0200)
committerMartin Bobak <mbobak@cisco.com>
Thu, 16 Oct 2014 14:27:01 +0000 (16:27 +0200)
Change-Id: Ie8f987be79dad4263d1e597efad2635e1460451a
Signed-off-by: Martin Bobak <mbobak@cisco.com>
applications/of-switch-config-pusher/pom.xml [new file with mode: 0644]
applications/pom.xml

diff --git a/applications/of-switch-config-pusher/pom.xml b/applications/of-switch-config-pusher/pom.xml
new file mode 100644 (file)
index 0000000..de085e4
--- /dev/null
@@ -0,0 +1,45 @@
+<?xml version="1.0"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+         xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.opendaylight.openflowplugin</groupId>
+        <artifactId>applications</artifactId>
+        <version>0.1.0-SNAPSHOT</version>
+    </parent>
+    <groupId>org.opendaylight.openflowplugin.applications</groupId>
+    <artifactId>of-switch-config-pusher</artifactId>
+    <packaging>bundle</packaging>
+    <dependencies>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>3.8.1</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.jacoco</groupId>
+                <artifactId>jacoco-maven-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>
+                            ${project.basedir}/src/main/java/org/opendaylight/yang/gen/v1/urn/opendaylight/params/xml/ns/yang/openflow/**/*.java
+                        </exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>build-helper-maven-plugin</artifactId>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </build>
+</project>
index 22ed667b5e7f7bcd664fd304e74995f2cb01c872..709b06a2bebc81fdfdafe4b5f5c50f2c4a5c71e7 100644 (file)
 
     <modules>
         <module>table-miss-enforcer</module>
-    </modules>
+        <module>of-switch-config-pusher</module>
+  </modules>
 
 </project>
\ No newline at end of file