Support default auto-maps service
[alto.git] / alto-core / standard-northbound-routes / endpointproperty / 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.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-endpointproperty-impl</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         <dependency>
37             <groupId>${project.groupId}</groupId>
38             <artifactId>alto-northbound-impl</artifactId>
39             <version>${project.version}</version>
40         </dependency>
41
42         <dependency>
43             <groupId>${project.groupId}</groupId>
44             <artifactId>alto-service-model-endpointproperty-api</artifactId>
45             <version>${project.version}</version>
46         </dependency>
47
48         <dependency>
49             <groupId>${project.groupId}</groupId>
50             <artifactId>alto-northbound-route-endpointproperty-api</artifactId>
51             <version>${project.version}</version>
52         </dependency>
53
54         <dependency>
55             <groupId>org.opendaylight.mdsal.model</groupId>
56             <artifactId>ietf-inet-types-2013-07-15</artifactId>
57         </dependency>
58
59         <!-- Testing Dependencies -->
60         <dependency>
61             <groupId>junit</groupId>
62             <artifactId>junit</artifactId>
63             <scope>test</scope>
64         </dependency>
65
66         <dependency>
67             <groupId>org.mockito</groupId>
68             <artifactId>mockito-all</artifactId>
69             <scope>test</scope>
70         </dependency>
71
72         <dependency>
73             <groupId>com.fasterxml.jackson.core</groupId>
74             <artifactId>jackson-core</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>com.fasterxml.jackson.core</groupId>
78             <artifactId>jackson-annotations</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>com.fasterxml.jackson.core</groupId>
82             <artifactId>jackson-databind</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>com.fasterxml.jackson.datatype</groupId>
86             <artifactId>jackson-datatype-json-org</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>com.fasterxml.jackson.jaxrs</groupId>
90             <artifactId>jackson-jaxrs-base</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>com.fasterxml.jackson.jaxrs</groupId>
94             <artifactId>jackson-jaxrs-json-provider</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>com.fasterxml.jackson.module</groupId>
98             <artifactId>jackson-module-jaxb-annotations</artifactId>
99         </dependency>
100         <dependency>
101             <groupId>org.eclipse.jetty</groupId>
102             <artifactId>jetty-servlets</artifactId>
103         </dependency>
104         <dependency>
105             <groupId>com.sun.jersey</groupId>
106             <artifactId>jersey-server</artifactId>
107         </dependency>
108         <dependency>
109             <groupId>javax.servlet</groupId>
110             <artifactId>servlet-api</artifactId>
111             <version>2.5</version>
112         </dependency>
113     </dependencies>
114
115     <build>
116         <plugins>
117             <plugin>
118                 <groupId>org.apache.felix</groupId>
119                 <artifactId>maven-bundle-plugin</artifactId>
120                 <version>${bundle.plugin.version}</version>
121                 <extensions>true</extensions>
122                 <configuration>
123                     <instructions>
124                         <Import-Package>*,com.sun.jersey.spi.container.servlet, org.eclipse.jetty.servlets</Import-Package>
125                         <Web-ContextPath>/alto</Web-ContextPath>
126                     </instructions>
127                 </configuration>
128             </plugin>
129         </plugins>
130     </build>
131
132 </project>