Bump versions for Lithium
[yangtools.git] / restconf / restconf-util / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!-- Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. This 
4     program and the accompanying materials are made available under the terms of the 
5     Eclipse Public License v1.0 which accompanies this distribution, and is available 
6     at http://www.eclipse.org/legal/epl-v10.html -->
7 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9     <modelVersion>4.0.0</modelVersion>
10
11     <parent>
12         <groupId>org.opendaylight.yangtools</groupId>
13         <artifactId>restconf-parent</artifactId>
14         <version>0.7.0-SNAPSHOT</version>
15     </parent>
16
17     <artifactId>restconf-util</artifactId>
18     <packaging>jar</packaging>
19
20     <dependencies>
21         <dependency>
22             <groupId>org.slf4j</groupId>
23             <artifactId>slf4j-api</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>org.slf4j</groupId>
27             <artifactId>slf4j-simple</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.yangtools</groupId>
31             <artifactId>restconf-client-api</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.yangtools</groupId>
35             <artifactId>restconf-jaxrs-api</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.yangtools</groupId>
39             <artifactId>yang-binding</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.yangtools</groupId>
43             <artifactId>yang-common</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.yangtools</groupId>
47             <artifactId>yang-data-api</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.yangtools</groupId>
51             <artifactId>yang-data-impl</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.yangtools</groupId>
55             <artifactId>yang-model-api</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>commons-io</groupId>
59             <artifactId>commons-io</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>com.google.guava</groupId>
63             <artifactId>guava</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>javax.ws.rs</groupId>
67             <artifactId>javax.ws.rs-api</artifactId>
68         </dependency>
69
70         <dependency>
71             <groupId>com.sun.jersey</groupId>
72             <artifactId>jersey-client</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>xml-apis</groupId>
76             <artifactId>xml-apis</artifactId>
77         </dependency>
78
79         <dependency>
80             <groupId>junit</groupId>
81             <artifactId>junit</artifactId>
82             <scope>test</scope>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.yangtools.model</groupId>
86             <artifactId>ietf-topology-isis</artifactId>
87             <scope>test</scope>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.yangtools</groupId>
91             <artifactId>binding-generator-impl</artifactId>
92             <scope>test</scope>
93         </dependency>
94         <dependency>
95             <groupId>org.opendaylight.yangtools</groupId>
96             <artifactId>binding-data-codec</artifactId>
97             <version>0.7.0-SNAPSHOT</version>
98             <scope>test</scope>
99         </dependency>
100         <dependency>
101             <groupId>org.opendaylight.yangtools</groupId>
102             <artifactId>bug527-test-model</artifactId>
103             <scope>test</scope>
104         </dependency>
105         <dependency>
106             <groupId>org.opendaylight.yangtools</groupId>
107             <artifactId>bug1196-test-model</artifactId>
108             <scope>test</scope>
109         </dependency>
110     </dependencies>
111 </project>