b0f5f5d69a2ee5ebb0326fcd00ad3f6488ecee08
[openflowplugin.git] / applications / table-miss-enforcer / 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" xmlns="http://maven.apache.org/POM/4.0.0"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.openflowplugin</groupId>
7     <artifactId>applications</artifactId>
8     <version>0.0.3-SNAPSHOT</version>
9   </parent>
10   <groupId>org.opendaylight.openflowplugin.applications</groupId>
11   <artifactId>table-miss-enforcer</artifactId>
12   <packaging>bundle</packaging>
13   <dependencies>
14       <dependency>
15           <groupId>org.opendaylight.openflowplugin</groupId>
16           <artifactId>openflowplugin-api</artifactId>
17       </dependency>
18       <dependency>
19           <groupId>org.opendaylight.controller</groupId>
20           <artifactId>sal-binding-api</artifactId>
21       </dependency>
22       <dependency>
23           <groupId>org.opendaylight.controller</groupId>
24           <artifactId>sal-binding-broker-impl</artifactId>
25       </dependency>
26       <dependency>
27           <groupId>org.opendaylight.controller.model</groupId>
28           <artifactId>model-inventory</artifactId>
29       </dependency>
30       <dependency>
31           <groupId>org.opendaylight.controller.model</groupId>
32           <artifactId>model-flow-service</artifactId>
33       </dependency>
34       <dependency>
35           <groupId>org.mockito</groupId>
36           <artifactId>mockito-all</artifactId>
37           <scope>test</scope>
38       </dependency>
39       <dependency>
40           <groupId>junit</groupId>
41           <artifactId>junit</artifactId>
42           <scope>test</scope>
43       </dependency>
44       <dependency>
45           <groupId>org.opendaylight.controller</groupId>
46           <artifactId>config-api</artifactId>
47       </dependency>
48   </dependencies>
49
50     <build>
51      <plugins>
52          <plugin>
53              <groupId>org.jacoco</groupId>
54              <artifactId>jacoco-maven-plugin</artifactId>
55              <configuration>
56                  <excludes>
57                      <exclude>
58                          ${project.basedir}/org/opendaylight/yang/gen/v1/urn/opendaylight/params/xml/ns/yang/openflow/**/*.java
59                      </exclude>
60                  </excludes>
61              </configuration>
62          </plugin>
63          <plugin>
64              <groupId>org.opendaylight.yangtools</groupId>
65              <artifactId>yang-maven-plugin</artifactId>
66          </plugin>
67          <plugin>
68              <groupId>org.codehaus.mojo</groupId>
69              <artifactId>build-helper-maven-plugin</artifactId>
70          </plugin>
71          <plugin>
72              <groupId>org.apache.felix</groupId>
73              <artifactId>maven-bundle-plugin</artifactId>
74          </plugin>
75      </plugins>
76     </build>
77 </project>