89e8afb43b59cc0692385dfc805b1afb1ec26c77
[alto.git] / alto-extensions / multicost / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4 Copyright © 2017 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"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12
13   <modelVersion>4.0.0</modelVersion>
14
15   <parent>
16     <groupId>org.opendaylight.controller</groupId>
17     <artifactId>config-parent</artifactId>
18     <version>0.6.2-SNAPSHOT</version>
19     <relativePath/>
20   </parent>
21
22   <groupId>org.opendaylight.alto</groupId>
23   <artifactId>multicost-impl</artifactId>
24   <version>0.4.2-SNAPSHOT</version>
25   <!-- <name> formatting is used by autorelease to parse and notify projects on
26        build failure. Please do not modify this unless you have a good reason. -->
27   <name>ODL :: org.opendaylight.alto :: ${project.artifactId}</name>
28   <packaging>bundle</packaging>
29
30   <dependencies>
31     <dependency>
32       <groupId>${project.groupId}</groupId>
33       <artifactId>multicost-api</artifactId>
34       <version>${project.version}</version>
35     </dependency>
36
37     <!-- Testing Dependencies -->
38     <dependency>
39       <groupId>junit</groupId>
40       <artifactId>junit</artifactId>
41       <scope>test</scope>
42     </dependency>
43
44     <dependency>
45       <groupId>org.mockito</groupId>
46       <artifactId>mockito-core</artifactId>
47       <scope>test</scope>
48     </dependency>
49
50     <dependency>
51       <groupId>org.opendaylight.alto.core</groupId>
52       <artifactId>alto-northbound-api</artifactId>
53       <version>${project.version}</version>
54     </dependency>
55
56     <dependency>
57       <groupId>org.opendaylight.alto.core</groupId>
58       <artifactId>alto-northbound-impl</artifactId>
59       <version>${project.version}</version>
60     </dependency>
61
62     <dependency>
63       <groupId>org.eclipse.jetty</groupId>
64       <artifactId>jetty-servlets</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>com.sun.jersey</groupId>
68       <artifactId>jersey-server</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>javax.servlet</groupId>
72       <artifactId>javax.servlet-api</artifactId>
73     </dependency>
74     <dependency>
75       <artifactId>junit</artifactId>
76       <groupId>junit</groupId>
77     </dependency>
78
79     <dependency>
80       <groupId>com.fasterxml.jackson.core</groupId>
81       <artifactId>jackson-annotations</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>com.fasterxml.jackson.core</groupId>
85       <artifactId>jackson-databind</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>com.fasterxml.jackson.core</groupId>
89       <artifactId>jackson-core</artifactId>
90     </dependency>
91   </dependencies>
92 </project>