Bug 7433 - Remove use of YangSchemaSourceImpl from restconf tests
[netconf.git] / restconf / sal-rest-docgen / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2016 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.odlparent</groupId>
13     <artifactId>bundle-parent</artifactId>
14     <version>1.8.0-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.netconf</groupId>
19   <artifactId>sal-rest-docgen</artifactId>
20   <version>1.5.0-SNAPSHOT</version>
21   <packaging>bundle</packaging>
22
23   <dependencyManagement>
24     <dependencies>
25       <dependency>
26         <groupId>org.opendaylight.netconf</groupId>
27         <artifactId>netconf-parent</artifactId>
28         <version>1.2.0-SNAPSHOT</version>
29         <type>pom</type>
30         <scope>import</scope>
31       </dependency>
32     </dependencies>
33   </dependencyManagement>
34
35   <dependencies>
36     <dependency>
37       <groupId>com.github.mifmif</groupId>
38       <artifactId>generex</artifactId>
39       <version>1.0.0</version>
40     </dependency>
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.datatype</groupId>
51       <artifactId>jackson-datatype-json-org</artifactId>
52     </dependency>
53
54     <dependency>
55       <groupId>com.google.guava</groupId>
56       <artifactId>guava</artifactId>
57     </dependency>
58
59     <!-- Jax rs -->
60     <dependency>
61       <groupId>org.jboss.resteasy</groupId>
62       <artifactId>jaxrs-api</artifactId>
63     </dependency>
64
65     <dependency>
66       <groupId>org.json</groupId>
67       <artifactId>json</artifactId>
68     </dependency>
69
70     <dependency>
71       <groupId>org.opendaylight.controller</groupId>
72       <artifactId>sal-core-api</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.yangtools</groupId>
76       <artifactId>yang-common</artifactId>
77     </dependency>
78
79     <dependency>
80       <groupId>org.opendaylight.yangtools</groupId>
81       <artifactId>yang-model-api</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.yangtools</groupId>
85       <artifactId>yang-model-util</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.yangtools</groupId>
89       <artifactId>yang-parser-api</artifactId>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.yangtools</groupId>
93       <artifactId>yang-parser-impl</artifactId>
94     </dependency>
95     <dependency>
96       <groupId>org.opendaylight.yangtools</groupId>
97       <artifactId>yang-test-util</artifactId>
98     </dependency>
99
100     <dependency>
101       <groupId>org.osgi</groupId>
102       <artifactId>org.osgi.core</artifactId>
103     </dependency>
104
105     <dependency>
106       <groupId>org.slf4j</groupId>
107       <artifactId>slf4j-api</artifactId>
108     </dependency>
109     <dependency>
110       <groupId>org.mockito</groupId>
111       <artifactId>mockito-all</artifactId>
112       <scope>test</scope>
113     </dependency>
114     <dependency>
115       <groupId>org.opendaylight.yangtools</groupId>
116       <artifactId>yang-data-api</artifactId>
117     </dependency>
118     <dependency>
119       <groupId>dk.brics.automaton</groupId>
120       <artifactId>automaton</artifactId>
121       <version>1.11-8</version>
122     </dependency>
123   </dependencies>
124
125   <build>
126     <plugins>
127       <plugin>
128         <groupId>org.apache.felix</groupId>
129         <artifactId>maven-bundle-plugin</artifactId>
130         <extensions>true</extensions>
131         <configuration>
132
133           <instructions>
134             <Bundle-Name>MD SAL Rest Api Doc Generator</Bundle-Name>
135             <Embed-Dependency>generex, automaton</Embed-Dependency>
136             <Import-Package>!org.apache.maven.plugin.logging,
137               !org.apache.maven.project,
138               !org.opendaylight.yangtools.yang2sources.spi,
139               *,
140               com.sun.jersey.spi.container.servlet,
141               org.eclipse.jetty.servlets,
142               org.opendaylight.aaa.shiro.filters,
143               org.opendaylight.aaa.shiro.realm,
144               org.opendaylight.aaa.shiro.web.env,
145               org.apache.shiro.web.env
146             </Import-Package>
147             <Export-Package>
148               com.fasterxml.jackson.datatype.*,
149               org.json
150             </Export-Package>
151             <Bundle-Activator>org.opendaylight.netconf.sal.rest.doc.DocProvider</Bundle-Activator>
152             <Web-ContextPath>/apidoc</Web-ContextPath>
153           </instructions>
154
155         </configuration>
156       </plugin>
157     </plugins>
158   </build>
159 </project>