Release netconf
[netconf.git] / restconf / restconf-openapi / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2016-2017 Cisco Systems, Inc. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
10   <modelVersion>4.0.0</modelVersion>
11   <parent>
12     <groupId>org.opendaylight.netconf</groupId>
13     <artifactId>netconf-parent</artifactId>
14     <version>7.0.1</version>
15     <relativePath>../../parent</relativePath>
16   </parent>
17
18   <artifactId>restconf-openapi</artifactId>
19   <packaging>bundle</packaging>
20
21   <dependencies>
22     <dependency>
23       <groupId>dk.brics</groupId>
24       <artifactId>automaton</artifactId>
25       <version>1.12-4</version>
26     </dependency>
27
28     <dependency>
29       <groupId>com.fasterxml.jackson.jaxrs</groupId>
30       <artifactId>jackson-jaxrs-json-provider</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>com.google.guava</groupId>
34       <artifactId>guava</artifactId>
35     </dependency>
36
37     <dependency>
38       <groupId>javax.servlet</groupId>
39       <artifactId>javax.servlet-api</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>jakarta.ws.rs</groupId>
43       <artifactId>jakarta.ws.rs-api</artifactId>
44     </dependency>
45
46     <dependency>
47       <groupId>org.opendaylight.mdsal</groupId>
48       <artifactId>mdsal-dom-api</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.yangtools</groupId>
52       <artifactId>concepts</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.yangtools</groupId>
56       <artifactId>util</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.yangtools</groupId>
60       <artifactId>yang-common</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.yangtools</groupId>
64       <artifactId>yang-data-api</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.yangtools</groupId>
68       <artifactId>yang-model-api</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.yangtools</groupId>
72       <artifactId>yang-model-util</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.netconf</groupId>
76       <artifactId>restconf-nb</artifactId>
77     </dependency>
78
79     <dependency>
80       <groupId>com.guicedee.services</groupId>
81       <artifactId>javax.inject</artifactId>
82       <optional>true</optional>
83     </dependency>
84     <dependency>
85       <groupId>jakarta.annotation</groupId>
86       <artifactId>jakarta.annotation-api</artifactId>
87       <scope>provided</scope>
88       <optional>true</optional>
89     </dependency>
90     <dependency>
91       <groupId>org.osgi</groupId>
92       <artifactId>org.osgi.service.component.annotations</artifactId>
93     </dependency>
94
95     <dependency>
96       <groupId>org.opendaylight.aaa.web</groupId>
97       <artifactId>web-api</artifactId>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.aaa.web</groupId>
101       <artifactId>servlet-api</artifactId>
102     </dependency>
103     <dependency>
104       <groupId>org.glassfish.jersey.core</groupId>
105       <artifactId>jersey-server</artifactId>
106       <scope>test</scope>
107     </dependency>
108     <dependency>
109       <groupId>org.skyscreamer</groupId>
110       <artifactId>jsonassert</artifactId>
111       <version>1.5.1</version>
112       <scope>test</scope>
113     </dependency>
114     <dependency>
115       <groupId>org.opendaylight.yangtools</groupId>
116       <artifactId>yang-test-util</artifactId>
117     </dependency>
118   </dependencies>
119
120   <build>
121     <plugins>
122       <plugin>
123         <groupId>org.apache.felix</groupId>
124         <artifactId>maven-bundle-plugin</artifactId>
125         <extensions>true</extensions>
126         <configuration>
127
128           <instructions>
129             <Bundle-Name>Restconf OpenAPI Generator</Bundle-Name>
130             <Embed-Dependency>automaton</Embed-Dependency>
131             <Export-Package>
132               com.fasterxml.jackson.datatype.*
133             </Export-Package>
134           </instructions>
135
136         </configuration>
137       </plugin>
138     </plugins>
139   </build>
140 </project>