Bump to odlparent 3.1.0 and yangtools 2.0.3
[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.mdsal</groupId>
17     <artifactId>binding-parent</artifactId>
18     <version>0.13.0-SNAPSHOT</version>
19     <relativePath/>
20   </parent>
21
22   <groupId>org.opendaylight.alto</groupId>
23   <artifactId>multicost-impl</artifactId>
24   <version>0.7.0-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 :: alto :: ${project.artifactId}</name>
28   <packaging>bundle</packaging>
29
30   <dependencyManagement>
31     <dependencies>
32       <dependency>
33         <groupId>org.opendaylight.controller</groupId>
34         <artifactId>mdsal-artifacts</artifactId>
35         <version>1.8.0-SNAPSHOT</version>
36         <type>pom</type>
37         <scope>import</scope>
38       </dependency>
39     </dependencies>
40   </dependencyManagement>
41
42   <dependencies>
43     <dependency>
44       <groupId>org.opendaylight.controller</groupId>
45       <artifactId>sal-binding-api</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>${project.groupId}</groupId>
49       <artifactId>multicost-api</artifactId>
50       <version>${project.version}</version>
51     </dependency>
52
53     <!-- Testing Dependencies -->
54     <dependency>
55       <groupId>junit</groupId>
56       <artifactId>junit</artifactId>
57       <scope>test</scope>
58     </dependency>
59
60     <dependency>
61       <groupId>org.mockito</groupId>
62       <artifactId>mockito-core</artifactId>
63       <scope>test</scope>
64     </dependency>
65
66     <dependency>
67       <groupId>org.opendaylight.alto.core</groupId>
68       <artifactId>alto-northbound-api</artifactId>
69       <version>${project.version}</version>
70     </dependency>
71
72     <dependency>
73       <groupId>org.opendaylight.alto.core</groupId>
74       <artifactId>alto-northbound-impl</artifactId>
75       <version>${project.version}</version>
76     </dependency>
77
78     <dependency>
79       <groupId>org.eclipse.jetty</groupId>
80       <artifactId>jetty-servlets</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>com.sun.jersey</groupId>
84       <artifactId>jersey-server</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>javax.servlet</groupId>
88       <artifactId>javax.servlet-api</artifactId>
89     </dependency>
90     <dependency>
91       <artifactId>junit</artifactId>
92       <groupId>junit</groupId>
93     </dependency>
94
95     <dependency>
96       <groupId>com.fasterxml.jackson.core</groupId>
97       <artifactId>jackson-annotations</artifactId>
98     </dependency>
99     <dependency>
100       <groupId>com.fasterxml.jackson.core</groupId>
101       <artifactId>jackson-databind</artifactId>
102     </dependency>
103     <dependency>
104       <groupId>com.fasterxml.jackson.core</groupId>
105       <artifactId>jackson-core</artifactId>
106     </dependency>
107   </dependencies>
108 </project>