Bump versions to 4.0.0-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>4.0.0-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>org.opendaylight.mdsal</groupId>
58       <artifactId>mdsal-dom-api</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.yangtools</groupId>
62       <artifactId>concepts</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.yangtools</groupId>
66       <artifactId>util</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.yangtools</groupId>
70       <artifactId>yang-common</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.yangtools</groupId>
74       <artifactId>yang-data-api</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.yangtools</groupId>
78       <artifactId>yang-model-api</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.yangtools</groupId>
82       <artifactId>yang-model-util</artifactId>
83     </dependency>
84
85     <dependency>
86       <groupId>org.opendaylight.aaa.web</groupId>
87       <artifactId>web-api</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.aaa.web</groupId>
91       <artifactId>servlet-api</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>org.glassfish.jersey.core</groupId>
95       <artifactId>jersey-server</artifactId>
96       <scope>test</scope>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.yangtools</groupId>
100       <artifactId>yang-test-util</artifactId>
101     </dependency>
102   </dependencies>
103
104   <build>
105     <plugins>
106       <plugin>
107         <groupId>org.apache.felix</groupId>
108         <artifactId>maven-bundle-plugin</artifactId>
109         <extensions>true</extensions>
110         <configuration>
111
112           <instructions>
113             <Bundle-Name>MD SAL Rest Api Doc Generator</Bundle-Name>
114             <Embed-Dependency>generex, automaton</Embed-Dependency>
115             <Export-Package>
116               com.fasterxml.jackson.datatype.*
117             </Export-Package>
118           </instructions>
119
120         </configuration>
121       </plugin>
122     </plugins>
123   </build>
124 </project>