Bump versions by x.y.(z+1)
[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>restconf-parent</artifactId>
14     <version>1.8.4-SNAPSHOT</version>
15     <relativePath>../restconf-parent</relativePath>
16   </parent>
17
18   <groupId>org.opendaylight.netconf</groupId>
19   <artifactId>sal-rest-docgen</artifactId>
20   <version>1.8.4-SNAPSHOT</version>
21   <packaging>bundle</packaging>
22
23   <dependencies>
24     <dependency>
25       <groupId>com.github.mifmif</groupId>
26       <artifactId>generex</artifactId>
27       <version>1.0.0</version>
28     </dependency>
29     <dependency>
30       <groupId>com.fasterxml.jackson.core</groupId>
31       <artifactId>jackson-annotations</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>com.fasterxml.jackson.core</groupId>
35       <artifactId>jackson-databind</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>com.fasterxml.jackson.jaxrs</groupId>
39       <artifactId>jackson-jaxrs-json-provider</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>com.google.guava</groupId>
43       <artifactId>guava</artifactId>
44     </dependency>
45
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>sal-core-api</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.yangtools</groupId>
52       <artifactId>yang-common</artifactId>
53     </dependency>
54
55     <dependency>
56       <groupId>org.opendaylight.yangtools</groupId>
57       <artifactId>yang-model-api</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.yangtools</groupId>
61       <artifactId>yang-model-util</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.yangtools</groupId>
65       <artifactId>yang-parser-api</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.yangtools</groupId>
69       <artifactId>yang-parser-impl</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.yangtools</groupId>
73       <artifactId>yang-test-util</artifactId>
74     </dependency>
75
76     <dependency>
77       <groupId>org.osgi</groupId>
78       <artifactId>org.osgi.core</artifactId>
79     </dependency>
80
81     <dependency>
82       <groupId>org.slf4j</groupId>
83       <artifactId>slf4j-api</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>org.mockito</groupId>
87       <artifactId>mockito-core</artifactId>
88       <scope>test</scope>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.yangtools</groupId>
92       <artifactId>yang-data-api</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>dk.brics.automaton</groupId>
96       <artifactId>automaton</artifactId>
97       <version>1.11-8</version>
98     </dependency>
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   </dependencies>
108
109   <build>
110     <plugins>
111       <plugin>
112         <groupId>org.apache.felix</groupId>
113         <artifactId>maven-bundle-plugin</artifactId>
114         <extensions>true</extensions>
115         <configuration>
116
117           <instructions>
118             <Bundle-Name>MD SAL Rest Api Doc Generator</Bundle-Name>
119             <Embed-Dependency>generex, automaton</Embed-Dependency>
120             <Export-Package>
121               com.fasterxml.jackson.datatype.*
122             </Export-Package>
123           </instructions>
124
125         </configuration>
126       </plugin>
127     </plugins>
128   </build>
129 </project>