Remove restconf-parent
[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>2.0.0-SNAPSHOT</version>
15     <relativePath>../../netconf-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-1</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>yang-common</artifactId>
63     </dependency>
64
65     <dependency>
66       <groupId>org.opendaylight.yangtools</groupId>
67       <artifactId>yang-model-api</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.yangtools</groupId>
71       <artifactId>yang-model-util</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.yangtools</groupId>
75       <artifactId>yang-parser-api</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.yangtools</groupId>
79       <artifactId>yang-parser-impl</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.yangtools</groupId>
83       <artifactId>yang-test-util</artifactId>
84     </dependency>
85
86     <dependency>
87       <groupId>org.osgi</groupId>
88       <artifactId>osgi.core</artifactId>
89     </dependency>
90
91     <dependency>
92       <groupId>org.slf4j</groupId>
93       <artifactId>slf4j-api</artifactId>
94     </dependency>
95     <dependency>
96       <groupId>org.opendaylight.yangtools</groupId>
97       <artifactId>yang-data-api</artifactId>
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     <dependency>
108       <groupId>org.glassfish.jersey.core</groupId>
109       <artifactId>jersey-server</artifactId>
110       <scope>test</scope>
111     </dependency>
112   </dependencies>
113
114   <build>
115     <plugins>
116       <plugin>
117         <groupId>org.apache.felix</groupId>
118         <artifactId>maven-bundle-plugin</artifactId>
119         <extensions>true</extensions>
120         <configuration>
121
122           <instructions>
123             <Bundle-Name>MD SAL Rest Api Doc Generator</Bundle-Name>
124             <Embed-Dependency>generex, automaton</Embed-Dependency>
125             <Export-Package>
126               com.fasterxml.jackson.datatype.*
127             </Export-Package>
128           </instructions>
129
130         </configuration>
131       </plugin>
132     </plugins>
133   </build>
134 </project>