- restconf client implementation using RuntimeGeneratedMappingService
[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   <parent>
14     <groupId>org.opendaylight.yangtools</groupId>
15     <artifactId>restconf-parent</artifactId>
16     <version>0.6.2-SNAPSHOT</version>
17   </parent>
18
19
20   <groupId>org.opendaylight.yangtools</groupId>
21   <artifactId>restconf-client-impl</artifactId>
22   <packaging>bundle</packaging>
23
24   <dependencies>
25         <dependency>
26             <groupId>junit</groupId>
27             <artifactId>junit</artifactId>
28             <scope>test</scope>
29         </dependency>
30       <dependency>
31           <groupId>org.opendaylight.yangtools</groupId>
32           <artifactId>restconf-client-api</artifactId>
33       </dependency>
34       <dependency>
35           <groupId>org.opendaylight.yangtools</groupId>
36           <artifactId>yang-data-api</artifactId>
37       </dependency>
38       <dependency>
39           <groupId>org.opendaylight.yangtools</groupId>
40           <artifactId>restconf-util</artifactId>
41       </dependency>
42       <dependency>
43           <groupId>org.opendaylight.yangtools</groupId>
44           <artifactId>restconf-jaxrs-api</artifactId>
45       </dependency>
46 <!--       <dependency> -->
47 <!--           <groupId>org.opendaylight.yangtools</groupId> -->
48 <!--           <artifactId>restconf-test-service</artifactId> -->
49 <!--       </dependency> -->
50       <dependency>
51             <groupId>org.glassfish.jersey.ext</groupId>
52             <artifactId>jersey-proxy-client</artifactId>
53         </dependency>
54 <!--
55       <dependency>
56           <groupId>org.jboss.resteasy</groupId>
57           <artifactId>resteasy-jaxrs</artifactId>
58       </dependency>
59 -->
60       <dependency>
61           <groupId>org.glassfish.jersey.core</groupId>
62           <artifactId>jersey-client</artifactId>
63       </dependency>
64       <dependency>
65           <groupId>javax.ws.rs</groupId>
66           <artifactId>javax.ws.rs-api</artifactId>
67       </dependency>
68       <dependency>
69           <groupId>javax.ws.rs</groupId>
70           <artifactId>jsr311-api</artifactId>
71       </dependency>
72         <dependency>
73             <groupId>org.opendaylight.yangtools</groupId>
74             <artifactId>yang-model-api</artifactId>
75         </dependency>
76       <dependency>
77           <groupId>org.opendaylight.yangtools</groupId>
78           <artifactId>yang-model-util</artifactId>
79       </dependency>
80         <dependency>
81             <groupId>org.opendaylight.yangtools</groupId>
82             <artifactId>concepts</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.yangtools</groupId>
86             <artifactId>restconf-common</artifactId>
87         </dependency>
88       <dependency>
89           <groupId>org.opendaylight.yangtools</groupId>
90           <artifactId>websocket-client</artifactId>
91       </dependency>
92       <dependency>
93           <groupId>org.opendaylight.yangtools</groupId>
94           <artifactId>binding-generator-impl</artifactId>
95       </dependency>
96 <!--       <dependency> -->
97 <!--           <groupId>org.opendaylight.controller.model</groupId> -->
98 <!--           <artifactId>model-flow-service</artifactId> -->
99 <!--           <version>1.1-SNAPSHOT</version> -->
100 <!--           <scope>test</scope> -->
101 <!--       </dependency> -->
102   </dependencies>
103     <build>
104         <plugins>
105             <plugin>
106                 <groupId>org.apache.felix</groupId>
107                 <artifactId>maven-bundle-plugin</artifactId>
108                 <extensions>true</extensions>
109                 <configuration>
110                     <instructions>
111                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
112                         <Import-Package>!com.google.protobuf.*</Import-Package>
113                     </instructions>
114                 </configuration>
115             </plugin>
116         </plugins>
117     </build>
118 </project>