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