e8ab03defb1182b80577ba0295c381e561010ecd
[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   <properties>
11       <sonar.jacoco.excludes>${project.basedir}/org/opendaylight/yang/gen/v1/urn/opendaylight/params/xml/ns/yang/openflow/**/*.java</sonar.jacoco.excludes>
12       <sonar.exclusions>
13           ${project.basedir}/org/opendaylight/yang/gen/v1/urn/opendaylight/params/xml/ns/yang/openflow/**/*.java
14       </sonar.exclusions>
15   </properties>
16
17
18   <groupId>org.opendaylight.openflowplugin.applications</groupId>
19   <artifactId>table-miss-enforcer</artifactId>
20   <packaging>bundle</packaging>
21   <dependencies>
22       <dependency>
23           <groupId>org.opendaylight.openflowplugin</groupId>
24           <artifactId>openflowplugin-api</artifactId>
25       </dependency>
26       <dependency>
27           <groupId>org.opendaylight.controller</groupId>
28           <artifactId>sal-binding-api</artifactId>
29       </dependency>
30       <dependency>
31           <groupId>org.opendaylight.controller</groupId>
32           <artifactId>sal-binding-broker-impl</artifactId>
33       </dependency>
34       <dependency>
35           <groupId>org.opendaylight.controller.model</groupId>
36           <artifactId>model-inventory</artifactId>
37       </dependency>
38       <dependency>
39           <groupId>org.opendaylight.controller.model</groupId>
40           <artifactId>model-flow-service</artifactId>
41       </dependency>
42       <dependency>
43           <groupId>org.mockito</groupId>
44           <artifactId>mockito-all</artifactId>
45           <scope>test</scope>
46       </dependency>
47       <dependency>
48           <groupId>junit</groupId>
49           <artifactId>junit</artifactId>
50           <scope>test</scope>
51       </dependency>
52       <dependency>
53           <groupId>org.opendaylight.controller</groupId>
54           <artifactId>config-api</artifactId>
55       </dependency>
56   </dependencies>
57
58     <build>
59      <plugins>
60          <plugin>
61              <groupId>org.apache.maven.plugins</groupId>
62              <artifactId>maven-surefire-plugin</artifactId>
63              <version>2.16</version>
64              <configuration>
65                  <excludes>
66                      <exclude>
67                          ${project.basedir}/org/opendaylight/yang/gen/v1/urn/opendaylight/params/xml/ns/yang/openflow/**/*.java
68                      </exclude>
69                  </excludes>
70              </configuration>
71          </plugin>
72
73          <plugin>
74              <groupId>org.opendaylight.yangtools</groupId>
75              <artifactId>yang-maven-plugin</artifactId>
76          </plugin>
77          <plugin>
78              <groupId>org.codehaus.mojo</groupId>
79              <artifactId>build-helper-maven-plugin</artifactId>
80          </plugin>
81          <plugin>
82              <groupId>org.apache.felix</groupId>
83              <artifactId>maven-bundle-plugin</artifactId>
84          </plugin>
85      </plugins>
86     </build>
87 </project>