remove features-base and features-adsal
[alto.git] / alto-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   <parent>
5     <groupId>org.opendaylight.alto</groupId>
6     <artifactId>alto-parent</artifactId>
7     <version>0.2.0-SNAPSHOT</version>
8     <relativePath>../</relativePath>
9   </parent>
10
11   <groupId>org.opendaylight.alto</groupId>
12   <artifactId>alto-northbound</artifactId>
13   <packaging>bundle</packaging>
14
15   <build>
16     <plugins>
17       <plugin>
18         <groupId>org.codehaus.enunciate</groupId>
19         <artifactId>maven-enunciate-plugin</artifactId>
20       </plugin>
21
22       <plugin>
23         <groupId>org.apache.felix</groupId>
24         <artifactId>maven-bundle-plugin</artifactId>
25         <extensions>true</extensions>
26         <configuration>
27           <instructions>
28             <Import-Package>
29               org.opendaylight.yang.gen.v1.urn.opendaylight.alto.*,
30               org.opendaylight.alto.services.api.rfc7285,
31               org.opendaylight.alto.commons.*,
32               org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924,
33               org.apache.commons.logging,
34               com.sun.jersey.spi.container.servlet,
35               javax.ws.rs,
36               javax.ws.rs.core,
37               javax.xml.bind.annotation,
38               javax.xml.bind,
39               org.slf4j,
40               org.apache.catalina.filters,
41               !org.codehaus.enunciate.jaxrs,
42             </Import-Package>
43             <Web-ContextPath>/controller/nb/v2/alto</Web-ContextPath>
44           </instructions>
45           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
46         </configuration>
47       </plugin>
48     </plugins>
49   </build>
50
51   <dependencies>
52     <dependency>
53       <groupId>org.opendaylight.controller.thirdparty</groupId>
54       <artifactId>com.sun.jersey.jersey-servlet</artifactId>
55     </dependency>
56
57     <dependency>
58       <groupId>org.codehaus.enunciate</groupId>
59       <artifactId>enunciate-core-annotations</artifactId>
60     </dependency>
61
62     <dependency>
63       <groupId>${project.groupId}</groupId>
64       <artifactId>alto-model</artifactId>
65       <version>${project.version}</version>
66     </dependency>
67
68     <dependency>
69       <groupId>${project.groupId}</groupId>
70       <artifactId>alto-commons</artifactId>
71       <version>${project.version}</version>
72     </dependency>
73
74     <dependency>
75       <groupId>${project.groupId}</groupId>
76       <artifactId>service-api-rfc7285</artifactId>
77       <version>${project.version}</version>
78     </dependency>
79   </dependencies>
80 </project>