Bump versions by x.y.(z+1)
[alto.git] / alto-core / standard-northbound-routes / networkmap / 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-route-networkmap-impl</artifactId>
22   <version>0.4.3-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24   <dependencies>
25     <dependency>
26       <groupId>org.opendaylight.controller</groupId>
27       <artifactId>config-api</artifactId>
28     </dependency>
29
30     <dependency>
31       <groupId>${project.groupId}</groupId>
32       <artifactId>alto-northbound-api</artifactId>
33       <version>${project.version}</version>
34     </dependency>
35
36     <dependency>
37       <groupId>${project.groupId}</groupId>
38       <artifactId>alto-service-model-networkmap-api</artifactId>
39       <version>${project.version}</version>
40     </dependency>
41
42     <dependency>
43       <groupId>${project.groupId}</groupId>
44       <artifactId>alto-northbound-route-networkmap-api</artifactId>
45       <version>${project.version}</version>
46     </dependency>
47
48     <dependency>
49       <groupId>org.opendaylight.mdsal.model</groupId>
50       <artifactId>ietf-inet-types-2013-07-15</artifactId>
51     </dependency>
52
53     <!-- Testing Dependencies -->
54     <dependency>
55       <groupId>junit</groupId>
56       <artifactId>junit</artifactId>
57       <scope>test</scope>
58     </dependency>
59
60     <dependency>
61       <groupId>org.mockito</groupId>
62       <artifactId>mockito-core</artifactId>
63       <scope>test</scope>
64     </dependency>
65
66     <dependency>
67       <groupId>com.fasterxml.jackson.core</groupId>
68       <artifactId>jackson-core</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>com.fasterxml.jackson.core</groupId>
72       <artifactId>jackson-annotations</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>com.fasterxml.jackson.core</groupId>
76       <artifactId>jackson-databind</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>com.fasterxml.jackson.datatype</groupId>
80       <artifactId>jackson-datatype-json-org</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>com.fasterxml.jackson.jaxrs</groupId>
84       <artifactId>jackson-jaxrs-base</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>com.fasterxml.jackson.jaxrs</groupId>
88       <artifactId>jackson-jaxrs-json-provider</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>com.fasterxml.jackson.module</groupId>
92       <artifactId>jackson-module-jaxb-annotations</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>org.eclipse.jetty</groupId>
96       <artifactId>jetty-servlets</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>com.sun.jersey</groupId>
100       <artifactId>jersey-server</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>javax.servlet</groupId>
104       <artifactId>javax.servlet-api</artifactId>
105     </dependency>
106   </dependencies>
107
108   <build>
109     <plugins>
110       <plugin>
111         <groupId>org.apache.felix</groupId>
112         <artifactId>maven-bundle-plugin</artifactId>
113         <version>${bundle.plugin.version}</version>
114         <extensions>true</extensions>
115         <configuration>
116           <instructions>
117             <Import-Package>
118               *,
119               com.sun.jersey.spi.container.servlet,
120               org.eclipse.jetty.servlets;version="[8.1,10)"
121             </Import-Package>
122             <Web-ContextPath>/alto</Web-ContextPath>
123           </instructions>
124         </configuration>
125       </plugin>
126     </plugins>
127   </build>
128
129 </project>