4ded6edea6a37d63f9b08dd9937c07950a98c435
[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.9.1-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.9.1-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.2</version>
28       <exclusions>
29         <exclusion>
30           <groupId>dk.brics.automaton</groupId>
31           <artifactId>automaton</artifactId>
32         </exclusion>
33       </exclusions>
34     </dependency>
35     <dependency>
36       <groupId>dk.brics</groupId>
37       <artifactId>automaton</artifactId>
38       <version>1.12-1</version>
39     </dependency>
40
41     <dependency>
42       <groupId>com.fasterxml.jackson.core</groupId>
43       <artifactId>jackson-annotations</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>com.fasterxml.jackson.core</groupId>
47       <artifactId>jackson-databind</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>com.fasterxml.jackson.jaxrs</groupId>
51       <artifactId>jackson-jaxrs-json-provider</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>com.google.guava</groupId>
55       <artifactId>guava</artifactId>
56     </dependency>
57
58     <dependency>
59       <groupId>org.opendaylight.mdsal</groupId>
60       <artifactId>mdsal-dom-api</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.yangtools</groupId>
64       <artifactId>yang-common</artifactId>
65     </dependency>
66
67     <dependency>
68       <groupId>org.opendaylight.yangtools</groupId>
69       <artifactId>yang-model-api</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.yangtools</groupId>
73       <artifactId>yang-model-util</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.yangtools</groupId>
77       <artifactId>yang-parser-api</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.yangtools</groupId>
81       <artifactId>yang-parser-impl</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.yangtools</groupId>
85       <artifactId>yang-test-util</artifactId>
86     </dependency>
87
88     <dependency>
89       <groupId>org.osgi</groupId>
90       <artifactId>org.osgi.core</artifactId>
91     </dependency>
92
93     <dependency>
94       <groupId>org.slf4j</groupId>
95       <artifactId>slf4j-api</artifactId>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.yangtools</groupId>
99       <artifactId>yang-data-api</artifactId>
100     </dependency>
101     <dependency>
102       <groupId>org.opendaylight.aaa.web</groupId>
103       <artifactId>web-api</artifactId>
104     </dependency>
105     <dependency>
106       <groupId>org.opendaylight.aaa.web</groupId>
107       <artifactId>servlet-api</artifactId>
108     </dependency>
109     <dependency>
110       <groupId>org.glassfish.jersey.core</groupId>
111       <artifactId>jersey-server</artifactId>
112       <scope>test</scope>
113     </dependency>
114   </dependencies>
115
116   <build>
117     <plugins>
118       <plugin>
119         <groupId>org.apache.felix</groupId>
120         <artifactId>maven-bundle-plugin</artifactId>
121         <extensions>true</extensions>
122         <configuration>
123
124           <instructions>
125             <Bundle-Name>MD SAL Rest Api Doc Generator</Bundle-Name>
126             <Embed-Dependency>generex, automaton</Embed-Dependency>
127             <Export-Package>
128               com.fasterxml.jackson.datatype.*
129             </Export-Package>
130           </instructions>
131
132         </configuration>
133       </plugin>
134     </plugins>
135   </build>
136 </project>