Bump versions to 5.0.5-SNAPSHOT
[netconf.git] / restconf / sal-rest-docgen / 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>5.0.5-SNAPSHOT</version>
15     <relativePath>../../parent</relativePath>
16   </parent>
17
18   <artifactId>sal-rest-docgen</artifactId>
19   <packaging>bundle</packaging>
20
21   <dependencies>
22     <dependency>
23       <groupId>com.github.mifmif</groupId>
24       <artifactId>generex</artifactId>
25       <version>1.0.2</version>
26       <exclusions>
27         <exclusion>
28           <groupId>dk.brics.automaton</groupId>
29           <artifactId>automaton</artifactId>
30         </exclusion>
31       </exclusions>
32     </dependency>
33     <dependency>
34       <groupId>dk.brics</groupId>
35       <artifactId>automaton</artifactId>
36       <version>1.12-3</version>
37     </dependency>
38
39     <dependency>
40       <groupId>com.fasterxml.jackson.core</groupId>
41       <artifactId>jackson-annotations</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>com.fasterxml.jackson.core</groupId>
45       <artifactId>jackson-databind</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>com.fasterxml.jackson.jaxrs</groupId>
49       <artifactId>jackson-jaxrs-json-provider</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>com.google.guava</groupId>
53       <artifactId>guava</artifactId>
54     </dependency>
55
56     <dependency>
57       <groupId>javax.servlet</groupId>
58       <artifactId>javax.servlet-api</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>jakarta.ws.rs</groupId>
62       <artifactId>jakarta.ws.rs-api</artifactId>
63     </dependency>
64
65     <dependency>
66       <groupId>org.opendaylight.mdsal</groupId>
67       <artifactId>mdsal-dom-api</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.yangtools</groupId>
71       <artifactId>concepts</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.yangtools</groupId>
75       <artifactId>util</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.yangtools</groupId>
79       <artifactId>yang-common</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.yangtools</groupId>
83       <artifactId>yang-data-api</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.yangtools</groupId>
87       <artifactId>yang-model-api</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.yangtools</groupId>
91       <artifactId>yang-model-util</artifactId>
92     </dependency>
93
94     <dependency>
95       <groupId>com.guicedee.services</groupId>
96       <artifactId>javax.inject</artifactId>
97       <optional>true</optional>
98     </dependency>
99     <dependency>
100       <groupId>jakarta.annotation</groupId>
101       <artifactId>jakarta.annotation-api</artifactId>
102       <scope>provided</scope>
103       <optional>true</optional>
104     </dependency>
105     <dependency>
106       <groupId>org.osgi</groupId>
107       <artifactId>org.osgi.service.component.annotations</artifactId>
108     </dependency>
109
110     <dependency>
111       <groupId>org.opendaylight.aaa.web</groupId>
112       <artifactId>web-api</artifactId>
113     </dependency>
114     <dependency>
115       <groupId>org.opendaylight.aaa.web</groupId>
116       <artifactId>servlet-api</artifactId>
117     </dependency>
118     <dependency>
119       <groupId>org.glassfish.jersey.core</groupId>
120       <artifactId>jersey-server</artifactId>
121       <scope>test</scope>
122     </dependency>
123     <dependency>
124       <groupId>org.opendaylight.yangtools</groupId>
125       <artifactId>yang-test-util</artifactId>
126     </dependency>
127   </dependencies>
128
129   <build>
130     <plugins>
131       <plugin>
132         <groupId>org.apache.felix</groupId>
133         <artifactId>maven-bundle-plugin</artifactId>
134         <extensions>true</extensions>
135         <configuration>
136
137           <instructions>
138             <Bundle-Name>MD SAL Rest Api Doc Generator</Bundle-Name>
139             <Embed-Dependency>generex, automaton</Embed-Dependency>
140             <Export-Package>
141               com.fasterxml.jackson.datatype.*
142             </Export-Package>
143           </instructions>
144
145         </configuration>
146       </plugin>
147     </plugins>
148   </build>
149 </project>