Merge "add endpointcost-northbound-route"
[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.5.0-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.3.0-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-all</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>servlet-api</artifactId>
88       <version>2.5</version>
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>*,com.sun.jersey.spi.container.servlet, org.eclipse.jetty.servlets</Import-Package>
102             <Web-ContextPath>/alto</Web-ContextPath>
103           </instructions>
104         </configuration>
105       </plugin>
106     </plugins>
107   </build>
108
109 </project>