Bumped Yangtools by minor version.
[yangtools.git] / restconf / restconf-client-impl / pom.xml
1 <?xml version="1.0"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. 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 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
11     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
12   <modelVersion>4.0.0</modelVersion>
13
14     <parent>
15         <groupId>org.opendaylight.yangtools</groupId>
16         <artifactId>restconf-parent</artifactId>
17         <version>0.8.0-SNAPSHOT</version>
18     </parent>
19
20   <artifactId>restconf-client-impl</artifactId>
21   <packaging>bundle</packaging>
22
23   <dependencies>
24         <dependency>
25             <groupId>junit</groupId>
26             <artifactId>junit</artifactId>
27             <scope>test</scope>
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>yang-binding</artifactId>
36       </dependency>
37       <dependency>
38           <groupId>org.opendaylight.yangtools</groupId>
39           <artifactId>binding-data-codec</artifactId>
40       </dependency>
41       <dependency>
42           <groupId>org.opendaylight.yangtools</groupId>
43           <artifactId>restconf-util</artifactId>
44       </dependency>
45       <dependency>
46           <groupId>org.opendaylight.yangtools</groupId>
47           <artifactId>restconf-jaxrs-api</artifactId>
48       </dependency>
49 <!--       <dependency> -->
50 <!--           <groupId>org.opendaylight.yangtools</groupId> -->
51 <!--           <artifactId>restconf-test-service</artifactId> -->
52 <!--       </dependency> -->
53       <dependency>
54             <groupId>org.glassfish.jersey.ext</groupId>
55             <artifactId>jersey-proxy-client</artifactId>
56         </dependency>
57       <dependency>
58           <groupId>org.glassfish.jersey.core</groupId>
59           <artifactId>jersey-client</artifactId>
60       </dependency>
61       <dependency>
62           <groupId>javax.ws.rs</groupId>
63           <artifactId>javax.ws.rs-api</artifactId>
64       </dependency>
65       <dependency>
66           <groupId>javax.ws.rs</groupId>
67           <artifactId>jsr311-api</artifactId>
68       </dependency>
69         <dependency>
70             <groupId>org.opendaylight.yangtools</groupId>
71             <artifactId>yang-model-api</artifactId>
72         </dependency>
73       <dependency>
74           <groupId>org.opendaylight.yangtools</groupId>
75           <artifactId>yang-model-util</artifactId>
76       </dependency>
77       <dependency>
78           <groupId>org.opendaylight.yangtools</groupId>
79           <artifactId>yang-data-util</artifactId>
80       </dependency>
81         <dependency>
82             <groupId>org.opendaylight.yangtools</groupId>
83             <artifactId>concepts</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.yangtools</groupId>
87             <artifactId>restconf-common</artifactId>
88         </dependency>
89       <dependency>
90           <groupId>org.opendaylight.yangtools</groupId>
91           <artifactId>websocket-client</artifactId>
92       </dependency>
93       <dependency>
94           <groupId>org.opendaylight.yangtools</groupId>
95           <artifactId>binding-generator-impl</artifactId>
96       </dependency>
97   </dependencies>
98     <build>
99         <plugins>
100             <plugin>
101                 <groupId>org.apache.felix</groupId>
102                 <artifactId>maven-bundle-plugin</artifactId>
103                 <extensions>true</extensions>
104                 <configuration>
105                     <instructions>
106                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
107                         <Import-Package>!com.google.protobuf.*</Import-Package>
108                     </instructions>
109                 </configuration>
110             </plugin>
111         </plugins>
112     </build>
113 </project>