Introduce Identifiables
[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.6.2-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.opendaylight.yangtools</groupId>
27             <artifactId>restconf-client-api</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.yangtools</groupId>
31             <artifactId>restconf-jaxrs-api</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.yangtools</groupId>
35             <artifactId>yang-binding</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.yangtools</groupId>
39             <artifactId>yang-common</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.yangtools</groupId>
43             <artifactId>yang-data-api</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.yangtools</groupId>
47             <artifactId>yang-data-impl</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.yangtools</groupId>
51             <artifactId>yang-model-api</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>commons-io</groupId>
55             <artifactId>commons-io</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>com.google.guava</groupId>
59             <artifactId>guava</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>javax.ws.rs</groupId>
63             <artifactId>javax.ws.rs-api</artifactId>
64         </dependency>
65
66         <dependency>
67             <groupId>com.sun.jersey</groupId>
68             <artifactId>jersey-client</artifactId>
69             <version>1.17</version>
70         </dependency>
71         <dependency>
72             <groupId>xml-apis</groupId>
73             <artifactId>xml-apis</artifactId>
74             <version>2.0.2</version>
75         </dependency>
76
77         <dependency>
78             <groupId>junit</groupId>
79             <artifactId>junit</artifactId>
80             <scope>test</scope>
81         </dependency>
82         <dependency>
83             <groupId>org.opendaylight.yangtools.model</groupId>
84             <artifactId>ietf-topology-isis</artifactId>
85             <version>2013.10.21.2-SNAPSHOT</version>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.yangtools</groupId>
90             <artifactId>binding-generator-impl</artifactId>
91             <scope>test</scope>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.yangtools</groupId>
95             <artifactId>bug527-test-model</artifactId>
96             <version>0.6.2-SNAPSHOT</version>
97             <scope>test</scope>
98         </dependency>
99     </dependencies>
100 </project>