25757e66c4ecc5e6f7ed8304d41d285e043765dc
[controller.git] / opendaylight / northbound / switchmanager / 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   <groupId>org.opendaylight.controller</groupId>
11   <artifactId>switchmanager.northbound</artifactId>
12   <version>0.4.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <build>
16     <plugins>
17       <plugin>
18         <groupId>org.codehaus.enunciate</groupId>
19         <artifactId>maven-enunciate-plugin</artifactId>
20         <version>${enunciate.version}</version>
21         <dependencies>
22           <dependency>
23             <groupId>org.opendaylight.controller</groupId>
24             <artifactId>sal</artifactId>
25             <version>0.5.0-SNAPSHOT</version>
26           </dependency>
27         </dependencies>
28       </plugin>    
29     
30       <plugin>
31         <groupId>org.apache.felix</groupId>
32         <artifactId>maven-bundle-plugin</artifactId>
33         <version>2.3.6</version>
34         <extensions>true</extensions>
35         <configuration>
36           <instructions>
37             <Import-Package>
38               org.opendaylight.controller.sal.core,
39               org.opendaylight.controller.sal.utils,
40               org.opendaylight.controller.containermanager,
41               org.opendaylight.controller.switchmanager,
42               org.apache.commons.lang3.tuple,
43               org.apache.commons.logging,              
44               com.sun.jersey.spi.container.servlet,
45               org.opendaylight.controller.northbound.commons,
46               org.opendaylight.controller.northbound.commons.exception,
47               javax.ws.rs,
48               javax.ws.rs.core,
49               javax.xml.bind.annotation,
50               javax.xml.bind,
51               org.slf4j,
52               !org.codehaus.enunciate.jaxrs
53             </Import-Package>
54             <Web-ContextPath>/controller/nb/v2/switch</Web-ContextPath>
55           </instructions>
56         </configuration>
57       </plugin>
58     </plugins>
59   </build>
60   <dependencies>
61     <dependency>
62       <groupId>org.opendaylight.controller.thirdparty</groupId>
63       <artifactId>com.sun.jersey.jersey-servlet</artifactId>
64       <version>1.17-SNAPSHOT</version>
65     </dependency>
66   
67     <dependency>
68       <groupId>org.opendaylight.controller</groupId>
69       <artifactId>containermanager</artifactId>
70       <version>0.4.0-SNAPSHOT</version>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>switchmanager</artifactId>
75       <version>0.4.0-SNAPSHOT</version>
76     </dependency>
77
78         <dependency>
79       <groupId>org.opendaylight.controller</groupId>
80       <artifactId>sal</artifactId>
81       <version>0.5.0-SNAPSHOT</version>
82         </dependency> 
83
84     <dependency>
85           <groupId>org.opendaylight.controller</groupId>
86           <artifactId>commons.northbound</artifactId>
87           <version>0.4.0-SNAPSHOT</version>
88         </dependency>
89         
90         <dependency>
91                 <groupId>org.springframework</groupId>
92                 <artifactId>spring-web</artifactId>
93                 <version>${spring.version}</version>
94                 <scope>provided</scope>
95         </dependency>
96                 
97     <dependency>
98       <groupId>org.codehaus.enunciate</groupId>
99       <artifactId>enunciate-core-annotations</artifactId>
100       <version>${enunciate.version}</version>
101     </dependency>
102     
103   </dependencies>
104 </project>