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