Merge "NorthBound APIs for the Bridge Domain configuration Service. This is the first...
[controller.git] / opendaylight / northbound / networkconfiguration / bridgedomain / 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   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>commons.opendaylight</artifactId>
7     <version>1.4.0-SNAPSHOT</version>
8     <relativePath>../../../commons/opendaylight</relativePath>
9   </parent>
10
11   <artifactId>networkconfig.bridgedomain.northbound</artifactId>
12   <version>0.0.1-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <build>
15     <plugins>
16       <plugin>
17         <groupId>org.codehaus.enunciate</groupId>
18         <artifactId>maven-enunciate-plugin</artifactId>
19         <version>${enunciate.version}</version>
20         <dependencies>
21           <dependency>
22             <groupId>org.opendaylight.controller</groupId>
23             <artifactId>sal</artifactId>
24             <version>0.5.0-SNAPSHOT</version>
25           </dependency>
26         </dependencies>
27       </plugin>
28       <plugin>
29         <groupId>org.apache.felix</groupId>
30         <artifactId>maven-bundle-plugin</artifactId>
31         <version>2.3.6</version>
32         <extensions>true</extensions>
33         <configuration>
34           <instructions>
35             <Export-Package>
36             </Export-Package>
37             <Import-Package>
38               org.opendaylight.controller.sal.core,
39               org.opendaylight.controller.sal.utils,
40               org.opendaylight.controller.sal.networkconfig.bridgedomain,
41               org.opendaylight.controller.containermanager,
42               org.opendaylight.controller.usermanager,
43               com.sun.jersey.spi.container.servlet,
44               org.opendaylight.controller.northbound.commons,
45               org.opendaylight.controller.northbound.commons.exception,
46               org.opendaylight.controller.northbound.commons.utils,
47               org.opendaylight.controller.sal.authorization,
48               org.opendaylight.controller.connectionmanager,
49               org.opendaylight.controller.sal.connection,
50               org.slf4j,
51               javax.ws.rs,
52               javax.ws.rs.core,
53               javax.xml.bind.annotation,
54               javax.xml.bind,
55               !org.codehaus.enunciate.jaxrs
56             </Import-Package>
57             <Export-Package>
58             </Export-Package>
59             <Web-ContextPath>/controller/nb/v2/networkconfig/bridgedomain</Web-ContextPath>
60           </instructions>
61           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
62         </configuration>
63       </plugin>
64     </plugins>
65   </build>
66   <dependencies>
67     <dependency>
68       <groupId>org.opendaylight.controller</groupId>
69       <artifactId>sal</artifactId>
70       <version>0.5.0-SNAPSHOT</version>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>sal.connection</artifactId>
75       <version>0.1.0-SNAPSHOT</version>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.controller</groupId>
79       <artifactId>sal.networkconfiguration</artifactId>
80       <version>0.0.1-SNAPSHOT</version>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.controller</groupId>
84       <artifactId>connectionmanager</artifactId>
85       <version>0.1.0-SNAPSHOT</version>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.controller</groupId>
89       <artifactId>containermanager</artifactId>
90       <version>0.4.0-SNAPSHOT</version>
91     </dependency>
92     <dependency>
93       <groupId>org.codehaus.enunciate</groupId>
94       <artifactId>enunciate-core-annotations</artifactId>
95       <version>${enunciate.version}</version>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.controller</groupId>
99       <artifactId>commons.northbound</artifactId>
100       <version>0.4.0-SNAPSHOT</version>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.controller.thirdparty</groupId>
104       <artifactId>com.sun.jersey.jersey-servlet</artifactId>
105       <version>1.17-SNAPSHOT</version>
106     </dependency>
107   </dependencies>
108 </project>