Bump versions by x.y.(z+1)
[alto.git] / alto-core / northbound / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4 Copyright © 2015 Yale University and others. All rights reserved.
5
6 This program and the accompanying materials are made available under the
7 terms of the Eclipse Public License v1.0 which accompanies this distribution,
8 and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11
12   <parent>
13     <groupId>org.opendaylight.controller</groupId>
14     <artifactId>config-parent</artifactId>
15     <version>0.6.3-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18
19   <modelVersion>4.0.0</modelVersion>
20   <groupId>org.opendaylight.alto.core</groupId>
21   <artifactId>alto-northbound-impl</artifactId>
22   <version>0.4.3-SNAPSHOT</version>
23   <name>ODL :: alto :: ${project.artifactId}</name>
24   <packaging>bundle</packaging>
25   <dependencies>
26     <dependency>
27       <groupId>org.opendaylight.controller</groupId>
28       <artifactId>config-api</artifactId>
29     </dependency>
30
31     <dependency>
32       <groupId>${project.groupId}</groupId>
33       <artifactId>alto-northbound-api</artifactId>
34       <version>${project.version}</version>
35     </dependency>
36
37     <!-- Testing Dependencies -->
38     <dependency>
39       <groupId>junit</groupId>
40       <artifactId>junit</artifactId>
41       <scope>test</scope>
42     </dependency>
43
44     <dependency>
45       <groupId>org.mockito</groupId>
46       <artifactId>mockito-core</artifactId>
47       <scope>test</scope>
48     </dependency>
49
50     <dependency>
51       <groupId>com.fasterxml.jackson.core</groupId>
52       <artifactId>jackson-core</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>com.fasterxml.jackson.core</groupId>
56       <artifactId>jackson-annotations</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>com.fasterxml.jackson.core</groupId>
60       <artifactId>jackson-databind</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>com.fasterxml.jackson.datatype</groupId>
64       <artifactId>jackson-datatype-json-org</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>com.fasterxml.jackson.jaxrs</groupId>
68       <artifactId>jackson-jaxrs-base</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>com.fasterxml.jackson.jaxrs</groupId>
72       <artifactId>jackson-jaxrs-json-provider</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>com.fasterxml.jackson.module</groupId>
76       <artifactId>jackson-module-jaxb-annotations</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.eclipse.jetty</groupId>
80       <artifactId>jetty-servlets</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>com.sun.jersey</groupId>
84       <artifactId>jersey-server</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>javax.servlet</groupId>
88       <artifactId>javax.servlet-api</artifactId>
89     </dependency>
90   </dependencies>
91
92   <build>
93     <plugins>
94       <plugin>
95         <groupId>org.apache.felix</groupId>
96         <artifactId>maven-bundle-plugin</artifactId>
97         <version>${bundle.plugin.version}</version>
98         <extensions>true</extensions>
99         <configuration>
100           <instructions>
101             <Import-Package>
102               *,
103               com.sun.jersey.spi.container.servlet,
104               org.eclipse.jetty.servlets;version="[8.1,10)",
105               org.opendaylight.aaa.shiro.filters,
106               org.opendaylight.aaa.shiro.realm,
107               org.opendaylight.aaa.shiro.web.env,
108               org.apache.shiro.web.env
109             </Import-Package>
110             <Web-ContextPath>/alto</Web-ContextPath>
111           </instructions>
112         </configuration>
113       </plugin>
114     </plugins>
115   </build>
116
117 </project>