Merge "Cluster aware forwarding rule manager Forwarding rule manager can fail in...
[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.2.0-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.openflowplugin</groupId>
20           <artifactId>openflowplugin-common</artifactId>
21       </dependency>
22
23       <dependency>
24           <groupId>org.opendaylight.controller</groupId>
25           <artifactId>sal-binding-api</artifactId>
26       </dependency>
27       <dependency>
28           <groupId>org.opendaylight.controller</groupId>
29           <artifactId>sal-binding-config</artifactId>
30       </dependency>
31       <dependency>
32           <groupId>org.opendaylight.controller</groupId>
33           <artifactId>sal-binding-broker-impl</artifactId>
34       </dependency>
35       <dependency>
36           <groupId>org.opendaylight.controller.model</groupId>
37           <artifactId>model-inventory</artifactId>
38       </dependency>
39       <dependency>
40           <groupId>org.opendaylight.openflowplugin.model</groupId>
41           <artifactId>model-flow-service</artifactId>
42       </dependency>
43       <dependency>
44           <groupId>org.mockito</groupId>
45           <artifactId>mockito-all</artifactId>
46           <scope>test</scope>
47       </dependency>
48       <dependency>
49           <groupId>junit</groupId>
50           <artifactId>junit</artifactId>
51           <scope>test</scope>
52       </dependency>
53       <dependency>
54           <groupId>org.opendaylight.controller</groupId>
55           <artifactId>config-api</artifactId>
56       </dependency>
57   </dependencies>
58
59     <build>
60      <plugins>
61          <plugin>
62              <groupId>org.opendaylight.yangtools</groupId>
63              <artifactId>yang-maven-plugin</artifactId>
64          </plugin>
65
66          <plugin>
67           <groupId>org.codehaus.mojo</groupId>
68           <artifactId>build-helper-maven-plugin</artifactId>
69           <executions>
70             <execution>
71               <id>attach-artifacts</id>
72               <goals>
73                 <goal>attach-artifact</goal>
74               </goals>
75               <phase>package</phase>
76               <configuration>
77                 <artifacts>
78                   <artifact>
79                     <file>${project.build.directory}/classes/initial/69-table-miss-enforcer.xml</file>
80                     <type>xml</type>
81                     <classifier>config</classifier>
82                   </artifact>
83                 </artifacts>
84               </configuration>
85             </execution>
86           </executions>
87         </plugin>
88      </plugins>
89     </build>
90 </project>