Bug 1764 - created new bundle responsible for default OF switch configuration
[openflowplugin.git] / applications / of-switch-config-pusher / pom.xml
1 <?xml version="1.0"?>
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
3          xmlns="http://maven.apache.org/POM/4.0.0"
4          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5     <modelVersion>4.0.0</modelVersion>
6     <parent>
7         <groupId>org.opendaylight.openflowplugin</groupId>
8         <artifactId>applications</artifactId>
9         <version>0.1.0-SNAPSHOT</version>
10     </parent>
11     <groupId>org.opendaylight.openflowplugin.applications</groupId>
12     <artifactId>of-switch-config-pusher</artifactId>
13     <packaging>bundle</packaging>
14     <dependencies>
15         <dependency>
16             <groupId>junit</groupId>
17             <artifactId>junit</artifactId>
18             <version>3.8.1</version>
19             <scope>test</scope>
20         </dependency>
21     </dependencies>
22     <build>
23         <plugins>
24             <plugin>
25                 <groupId>org.jacoco</groupId>
26                 <artifactId>jacoco-maven-plugin</artifactId>
27                 <configuration>
28                     <excludes>
29                         <exclude>
30                             ${project.basedir}/src/main/java/org/opendaylight/yang/gen/v1/urn/opendaylight/params/xml/ns/yang/openflow/**/*.java
31                         </exclude>
32                     </excludes>
33                 </configuration>
34             </plugin>
35             <plugin>
36                 <groupId>org.codehaus.mojo</groupId>
37                 <artifactId>build-helper-maven-plugin</artifactId>
38             </plugin>
39             <plugin>
40                 <groupId>org.apache.felix</groupId>
41                 <artifactId>maven-bundle-plugin</artifactId>
42             </plugin>
43         </plugins>
44     </build>
45 </project>