807cf51dc3935962fb0897e40e252744daf622a4
[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>6.0.1-SNAPSHOT</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.core</groupId>
30       <artifactId>jackson-annotations</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>com.fasterxml.jackson.core</groupId>
34       <artifactId>jackson-databind</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>com.fasterxml.jackson.jaxrs</groupId>
38       <artifactId>jackson-jaxrs-json-provider</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>com.google.guava</groupId>
42       <artifactId>guava</artifactId>
43     </dependency>
44
45     <dependency>
46       <groupId>javax.servlet</groupId>
47       <artifactId>javax.servlet-api</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>jakarta.ws.rs</groupId>
51       <artifactId>jakarta.ws.rs-api</artifactId>
52     </dependency>
53
54     <dependency>
55       <groupId>org.opendaylight.mdsal</groupId>
56       <artifactId>mdsal-dom-api</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.yangtools</groupId>
60       <artifactId>concepts</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.yangtools</groupId>
64       <artifactId>util</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.yangtools</groupId>
68       <artifactId>yang-common</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.yangtools</groupId>
72       <artifactId>yang-data-api</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.yangtools</groupId>
76       <artifactId>yang-model-api</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.yangtools</groupId>
80       <artifactId>yang-model-util</artifactId>
81     </dependency>
82
83     <dependency>
84       <groupId>com.guicedee.services</groupId>
85       <artifactId>javax.inject</artifactId>
86       <optional>true</optional>
87     </dependency>
88     <dependency>
89       <groupId>jakarta.annotation</groupId>
90       <artifactId>jakarta.annotation-api</artifactId>
91       <scope>provided</scope>
92       <optional>true</optional>
93     </dependency>
94     <dependency>
95       <groupId>org.osgi</groupId>
96       <artifactId>org.osgi.service.component.annotations</artifactId>
97     </dependency>
98
99     <dependency>
100       <groupId>org.opendaylight.aaa.web</groupId>
101       <artifactId>web-api</artifactId>
102     </dependency>
103     <dependency>
104       <groupId>org.opendaylight.aaa.web</groupId>
105       <artifactId>servlet-api</artifactId>
106     </dependency>
107     <dependency>
108       <groupId>org.glassfish.jersey.core</groupId>
109       <artifactId>jersey-server</artifactId>
110       <scope>test</scope>
111     </dependency>
112     <dependency>
113       <groupId>org.opendaylight.yangtools</groupId>
114       <artifactId>yang-test-util</artifactId>
115     </dependency>
116   </dependencies>
117
118   <build>
119     <plugins>
120       <plugin>
121         <groupId>org.apache.felix</groupId>
122         <artifactId>maven-bundle-plugin</artifactId>
123         <extensions>true</extensions>
124         <configuration>
125
126           <instructions>
127             <Bundle-Name>Restconf OpenAPI Generator</Bundle-Name>
128             <Embed-Dependency>automaton</Embed-Dependency>
129             <Export-Package>
130               com.fasterxml.jackson.datatype.*
131             </Export-Package>
132           </instructions>
133
134         </configuration>
135       </plugin>
136     </plugins>
137   </build>
138 </project>