Fixes to make path redirect affinity work using the new nfchainagent service.
[affinity.git] / affinity / implementation / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
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
6   <parent>
7     <groupId>org.opendaylight.affinity</groupId>
8     <artifactId>affinityParent</artifactId>
9     <version>0.4.1-SNAPSHOT</version>
10     <relativePath>../..</relativePath>
11   </parent>
12
13   <groupId>org.opendaylight.affinity</groupId>
14   <artifactId>affinity.implementation</artifactId>
15   <version>0.4.1-SNAPSHOT</version>
16   <packaging>bundle</packaging>
17
18   <build>
19     <pluginManagement>
20       <plugins>
21         <plugin>
22           <groupId>org.jacoco</groupId>
23           <artifactId>jacoco-maven-plugin</artifactId>
24           <version>0.5.3.201107060350</version>
25         </plugin>
26       </plugins>
27     </pluginManagement>
28     <plugins>
29       <plugin>
30         <groupId>org.apache.felix</groupId>
31         <artifactId>maven-bundle-plugin</artifactId>
32         <version>2.3.6</version>
33         <extensions>true</extensions>
34         <configuration>
35           <instructions>
36             <Import-Package>
37               org.opendaylight.affinity.affinity,
38               org.opendaylight.affinity.l2agent,
39               org.opendaylight.affinity.nfchainagent, 
40               org.opendaylight.controller.clustering.services,
41               org.opendaylight.controller.configuration,
42               org.opendaylight.controller.hosttracker,
43               org.opendaylight.controller.hosttracker.hostAware,
44               org.opendaylight.controller.sal.core,
45               org.opendaylight.controller.sal.utils,
46               org.opendaylight.controller.sal.packet,
47               org.opendaylight.controller.sal.inventory,
48               org.opendaylight.controller.sal.flowprogrammer, 
49               org.opendaylight.controller.forwardingrulesmanager, 
50               org.opendaylight.controller.sal.match,
51               org.opendaylight.controller.sal.action,
52               org.opendaylight.controller.switchmanager,
53               org.slf4j,
54               org.apache.felix.dm,
55               org.eclipse.osgi.framework.console,
56               org.osgi.framework,
57               javax.xml.bind.annotation,
58               org.apache.commons.lang3.builder
59             </Import-Package>
60             <Bundle-Activator>
61               org.opendaylight.affinity.affinity.internal.Activator
62             </Bundle-Activator>
63           </instructions>
64           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
65         </configuration>
66       </plugin>
67       <plugin>
68         <groupId>org.jacoco</groupId>
69         <artifactId>jacoco-maven-plugin</artifactId>
70         <configuration>
71           <includes>org.opendaylight.controller.*</includes>
72         </configuration>
73         <executions>
74           <execution>
75             <id>pre-test</id>
76             <goals>
77               <goal>prepare-agent</goal>
78             </goals>
79           </execution>
80           <execution>
81             <id>post-test</id>
82             <phase>test</phase>
83             <goals>
84               <goal>report</goal>
85             </goals>
86           </execution>
87         </executions>
88       </plugin>
89     </plugins>
90   </build>
91   <dependencies>
92     <dependency>
93       <groupId>junit</groupId>
94       <artifactId>junit</artifactId>
95       <version>${junit.version}</version>
96       <scope>test</scope>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.controller</groupId>
100       <artifactId>clustering.services</artifactId>
101       <version>0.4.0-SNAPSHOT</version>
102     </dependency>
103     <dependency>
104       <groupId>org.opendaylight.controller</groupId>
105       <artifactId>configuration</artifactId>
106       <version>0.4.0-SNAPSHOT</version>
107     </dependency>
108     <dependency>
109       <groupId>org.opendaylight.controller</groupId>
110       <artifactId>sal</artifactId>
111       <version>0.5.0-SNAPSHOT</version>
112     </dependency>
113     <dependency>
114       <groupId>org.opendaylight.controller</groupId>
115       <artifactId>forwardingrulesmanager</artifactId>
116       <version>0.4.0-SNAPSHOT</version>
117     </dependency>
118     <dependency>
119       <groupId>org.opendaylight.controller</groupId>
120       <artifactId>hosttracker</artifactId>
121       <version>0.4.0-SNAPSHOT</version>
122     </dependency>
123     <dependency>
124       <groupId>org.opendaylight.affinity</groupId>
125       <artifactId>affinity</artifactId>
126       <version>0.4.1-SNAPSHOT</version>
127     </dependency>
128     <dependency>
129       <groupId>org.opendaylight.affinity</groupId>
130       <artifactId>l2agent</artifactId>
131       <version>0.4.1-SNAPSHOT</version>
132     </dependency>
133     <dependency>
134       <groupId>org.opendaylight.affinity</groupId>
135       <artifactId>nfchainagent</artifactId>
136       <version>0.4.1-SNAPSHOT</version>
137     </dependency>
138   </dependencies>
139 </project>