Fixes to make path redirect affinity work using the new nfchainagent service.
[affinity.git] / analytics / northbound / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4
5   <parent>
6     <groupId>org.opendaylight.affinity</groupId>
7     <artifactId>affinityParent</artifactId>
8     <version>0.4.1-SNAPSHOT</version>
9     <relativePath>../..</relativePath>
10   </parent>
11
12   <groupId>org.opendaylight.affinity</groupId>
13   <artifactId>analytics.northbound</artifactId>
14   <version>0.4.1-SNAPSHOT</version>
15   <packaging>bundle</packaging>
16
17   <build>
18     <plugins>
19       <plugin>
20         <groupId>org.codehaus.enunciate</groupId>
21         <artifactId>maven-enunciate-plugin</artifactId>
22         <version>${enunciate.version}</version>
23         <dependencies>
24           <dependency>
25             <groupId>org.opendaylight.controller</groupId>
26             <artifactId>sal</artifactId>
27             <version>0.5.0-SNAPSHOT</version>
28           </dependency>
29         </dependencies>
30       </plugin>
31       <plugin>
32         <groupId>org.apache.felix</groupId>
33         <artifactId>maven-bundle-plugin</artifactId>
34         <version>2.3.6</version>
35         <extensions>true</extensions>
36         <configuration>
37           <instructions>
38             <Export-Package>
39             </Export-Package>
40               <Import-Package>
41                 com.sun.jersey.spi.container.servlet,
42                 javax.ws.rs,
43                 javax.ws.rs.core,
44                 javax.xml.bind.annotation,
45                 org.opendaylight.affinity.affinity,
46                 org.opendaylight.affinity.analytics,
47                 org.opendaylight.controller.containermanager,
48                 org.opendaylight.controller.hosttracker,
49                 org.opendaylight.controller.hosttracker.hostAware,
50                 org.opendaylight.controller.northbound.commons,
51                 org.opendaylight.controller.northbound.commons.exception,
52                 org.opendaylight.controller.northbound.commons.utils,
53                 org.opendaylight.controller.sal.authorization,
54                 org.opendaylight.controller.sal.core,
55                 org.opendaylight.controller.sal.utils,
56                 org.opendaylight.controller.switchmanager,
57                 !org.codehaus.enunciate.jaxrs
58               </Import-Package>
59             <Export-Package>
60             </Export-Package>
61             <Web-ContextPath>/affinity/nb/v2/analytics</Web-ContextPath>
62           </instructions>
63           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
64         </configuration>
65       </plugin>
66     </plugins>
67   </build>
68   <dependencies>
69     <dependency>
70       <groupId>org.opendaylight.affinity</groupId>
71       <artifactId>affinity</artifactId>
72       <version>0.4.1-SNAPSHOT</version>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.affinity</groupId>
76       <artifactId>analytics</artifactId>
77       <version>0.4.1-SNAPSHOT</version>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.controller</groupId>
81       <artifactId>containermanager</artifactId>
82       <version>0.4.0-SNAPSHOT</version>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.controller</groupId>
86       <artifactId>hosttracker</artifactId>
87       <version>0.4.0-SNAPSHOT</version>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.controller</groupId>
91       <artifactId>sal</artifactId>
92       <version>0.5.0-SNAPSHOT</version>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.controller.thirdparty</groupId>
96       <artifactId>com.sun.jersey.jersey-servlet</artifactId>
97       <version>1.17-SNAPSHOT</version>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.controller</groupId>
101       <artifactId>commons.northbound</artifactId>
102       <version>0.4.0-SNAPSHOT</version>
103     </dependency>
104     <dependency>
105       <groupId>org.codehaus.enunciate</groupId>
106       <artifactId>enunciate-core-annotations</artifactId>
107       <version>${enunciate.version}</version>
108     </dependency>
109   </dependencies>
110 </project>