Bump versions for Lithium
[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.7.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>restconf-util</artifactId>
40       </dependency>
41       <dependency>
42           <groupId>org.opendaylight.yangtools</groupId>
43           <artifactId>restconf-jaxrs-api</artifactId>
44       </dependency>
45 <!--       <dependency> -->
46 <!--           <groupId>org.opendaylight.yangtools</groupId> -->
47 <!--           <artifactId>restconf-test-service</artifactId> -->
48 <!--       </dependency> -->
49       <dependency>
50             <groupId>org.glassfish.jersey.ext</groupId>
51             <artifactId>jersey-proxy-client</artifactId>
52         </dependency>
53       <dependency>
54           <groupId>org.glassfish.jersey.core</groupId>
55           <artifactId>jersey-client</artifactId>
56       </dependency>
57       <dependency>
58           <groupId>javax.ws.rs</groupId>
59           <artifactId>javax.ws.rs-api</artifactId>
60       </dependency>
61       <dependency>
62           <groupId>javax.ws.rs</groupId>
63           <artifactId>jsr311-api</artifactId>
64       </dependency>
65         <dependency>
66             <groupId>org.opendaylight.yangtools</groupId>
67             <artifactId>yang-model-api</artifactId>
68         </dependency>
69       <dependency>
70           <groupId>org.opendaylight.yangtools</groupId>
71           <artifactId>yang-model-util</artifactId>
72       </dependency>
73       <dependency>
74           <groupId>org.opendaylight.yangtools</groupId>
75           <artifactId>yang-data-util</artifactId>
76       </dependency>
77         <dependency>
78             <groupId>org.opendaylight.yangtools</groupId>
79             <artifactId>concepts</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.yangtools</groupId>
83             <artifactId>restconf-common</artifactId>
84         </dependency>
85       <dependency>
86           <groupId>org.opendaylight.yangtools</groupId>
87           <artifactId>websocket-client</artifactId>
88       </dependency>
89       <dependency>
90           <groupId>org.opendaylight.yangtools</groupId>
91           <artifactId>binding-generator-impl</artifactId>
92       </dependency>
93   </dependencies>
94     <build>
95         <plugins>
96             <plugin>
97                 <groupId>org.apache.felix</groupId>
98                 <artifactId>maven-bundle-plugin</artifactId>
99                 <extensions>true</extensions>
100                 <configuration>
101                     <instructions>
102                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
103                         <Import-Package>!com.google.protobuf.*</Import-Package>
104                     </instructions>
105                 </configuration>
106             </plugin>
107         </plugins>
108     </build>
109 </project>