Support for network service for alto-northbound
[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.1.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         <dependencies>
21           <dependency>
22             <groupId>org.opendaylight.controller</groupId>
23             <artifactId>sal</artifactId>
24             <version>${sal.version}</version>
25           </dependency>
26         </dependencies>
27       </plugin>
28
29       <plugin>
30         <groupId>org.apache.felix</groupId>
31         <artifactId>maven-bundle-plugin</artifactId>
32         <extensions>true</extensions>
33         <configuration>
34           <instructions>
35             <Import-Package>
36               org.opendaylight.yang.gen.v1.urn.opendaylight.alto.*,
37               org.opendaylight.alto.services.api.rfc7285,
38               org.opendaylight.alto.commons.*,
39               org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924,
40               org.apache.commons.logging,
41               com.sun.jersey.spi.container.servlet,
42               org.opendaylight.controller.sal.utils,
43               org.opendaylight.controller.sal.authorization,
44               org.opendaylight.controller.sal.packet.address,
45               javax.ws.rs,
46               javax.ws.rs.core,
47               javax.xml.bind.annotation,
48               javax.xml.bind,
49               org.slf4j,
50               org.apache.catalina.filters,
51               com.fasterxml.jackson.jaxrs.base,
52               com.fasterxml.jackson.jaxrs.json,
53               !org.codehaus.enunciate.jaxrs
54             </Import-Package>
55             <Web-ContextPath>/controller/nb/v2/alto</Web-ContextPath>
56           </instructions>
57           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
58         </configuration>
59       </plugin>
60     </plugins>
61   </build>
62
63   <dependencies>
64     <dependency>
65       <groupId>org.opendaylight.controller.thirdparty</groupId>
66       <artifactId>com.sun.jersey.jersey-servlet</artifactId>
67     </dependency>
68
69     <dependency>
70       <groupId>org.opendaylight.controller</groupId>
71       <artifactId>commons.northbound</artifactId>
72       <version>${controller.commons.northbound.version}</version>
73     </dependency>
74
75     <dependency>
76       <groupId>org.opendaylight.controller</groupId>
77       <artifactId>sal-common-util</artifactId>
78     </dependency>
79
80     <dependency>
81       <groupId>org.codehaus.enunciate</groupId>
82       <artifactId>enunciate-core-annotations</artifactId>
83     </dependency>
84
85     <dependency>
86       <groupId>com.fasterxml.jackson.core</groupId>
87       <artifactId>jackson-databind</artifactId>
88     </dependency>
89
90     <dependency>
91       <groupId>com.fasterxml.jackson.core</groupId>
92       <artifactId>jackson-core</artifactId>
93     </dependency>
94
95     <dependency>
96       <groupId>${project.groupId}</groupId>
97       <artifactId>alto-model</artifactId>
98       <version>${project.version}</version>
99     </dependency>
100
101     <dependency>
102       <groupId>${project.groupId}</groupId>
103       <artifactId>alto-commons</artifactId>
104       <version>${project.version}</version>
105     </dependency>
106
107     <dependency>
108       <groupId>${project.groupId}</groupId>
109       <artifactId>service-api-rfc7285</artifactId>
110       <version>${project.version}</version>
111     </dependency>
112   </dependencies>
113 </project>