Fixes to make path redirect affinity work using the new nfchainagent service.
[affinity.git] / affinity / api / 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</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             <Export-Package>
37               org.opendaylight.affinity.affinity
38             </Export-Package>
39             <Import-Package>
40               javax.xml.bind.annotation,
41               org.opendaylight.controller.clustering.services,
42               org.opendaylight.controller.configuration,
43               org.opendaylight.controller.sal.core,
44               org.opendaylight.controller.sal.utils,
45               org.opendaylight.controller.sal.packet,
46               org.opendaylight.controller.sal.inventory,
47               org.opendaylight.controller.sal.flowprogrammer,
48               !org.codehaus.enunciate.jaxrs
49             </Import-Package>
50           </instructions>
51           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
52         </configuration>
53       </plugin>
54       <plugin>
55         <groupId>org.jacoco</groupId>
56         <artifactId>jacoco-maven-plugin</artifactId>
57         <configuration>
58           <includes>org.opendaylight.controller.*</includes>
59         </configuration>
60         <executions>
61           <execution>
62             <id>pre-test</id>
63             <goals>
64               <goal>prepare-agent</goal>
65             </goals>
66           </execution>
67           <execution>
68             <id>post-test</id>
69             <phase>test</phase>
70             <goals>
71               <goal>report</goal>
72             </goals>
73           </execution>
74         </executions>
75       </plugin>
76     </plugins>
77   </build>
78   <dependencies>
79    <dependency>
80       <groupId>junit</groupId>
81       <artifactId>junit</artifactId>
82       <version>${junit.version}</version>
83       <scope>test</scope>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.controller</groupId>
87       <artifactId>clustering.services</artifactId>
88       <version>0.4.0-SNAPSHOT</version>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.controller</groupId>
92       <artifactId>configuration</artifactId>
93       <version>0.4.0-SNAPSHOT</version>
94     </dependency>
95     <dependency>
96       <groupId>org.opendaylight.controller</groupId>
97       <artifactId>sal</artifactId>
98       <version>0.5.0-SNAPSHOT</version>
99     </dependency>
100     <dependency>
101       <groupId>org.codehaus.enunciate</groupId>
102       <artifactId>enunciate-core-annotations</artifactId>
103       <version>${enunciate.version}</version>
104     </dependency>
105   </dependencies>
106 </project>