Bump versions by x.y.(z+1)
[alto.git] / alto-core / standard-northbound-routes / example / 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-example</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     <!-- Testing Dependencies -->
37     <dependency>
38       <groupId>junit</groupId>
39       <artifactId>junit</artifactId>
40       <scope>test</scope>
41     </dependency>
42
43     <dependency>
44       <groupId>org.mockito</groupId>
45       <artifactId>mockito-core</artifactId>
46       <scope>test</scope>
47     </dependency>
48
49     <dependency>
50       <groupId>com.fasterxml.jackson.core</groupId>
51       <artifactId>jackson-core</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>com.fasterxml.jackson.core</groupId>
55       <artifactId>jackson-annotations</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>com.fasterxml.jackson.core</groupId>
59       <artifactId>jackson-databind</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>com.fasterxml.jackson.datatype</groupId>
63       <artifactId>jackson-datatype-json-org</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>com.fasterxml.jackson.jaxrs</groupId>
67       <artifactId>jackson-jaxrs-base</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>com.fasterxml.jackson.jaxrs</groupId>
71       <artifactId>jackson-jaxrs-json-provider</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>com.fasterxml.jackson.module</groupId>
75       <artifactId>jackson-module-jaxb-annotations</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>org.eclipse.jetty</groupId>
79       <artifactId>jetty-servlets</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>com.sun.jersey</groupId>
83       <artifactId>jersey-server</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>javax.servlet</groupId>
87       <artifactId>javax.servlet-api</artifactId>
88     </dependency>
89   </dependencies>
90
91   <build>
92     <plugins>
93       <plugin>
94         <groupId>org.apache.felix</groupId>
95         <artifactId>maven-bundle-plugin</artifactId>
96         <version>${bundle.plugin.version}</version>
97         <extensions>true</extensions>
98         <configuration>
99           <instructions>
100             <Import-Package>
101               *,
102               com.sun.jersey.spi.container.servlet,
103               org.eclipse.jetty.servlets;version="[8.1,10)"
104             </Import-Package>
105             <Web-ContextPath>/alto</Web-ContextPath>
106           </instructions>
107         </configuration>
108       </plugin>
109     </plugins>
110   </build>
111
112 </project>