Add missing copyright to pom files
[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.fasterxml.jackson.core</groupId>
38       <artifactId>jackson-annotations</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>com.fasterxml.jackson.core</groupId>
42       <artifactId>jackson-databind</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>com.fasterxml.jackson.datatype</groupId>
46       <artifactId>jackson-datatype-json-org</artifactId>
47     </dependency>
48
49     <dependency>
50       <groupId>com.google.guava</groupId>
51       <artifactId>guava</artifactId>
52     </dependency>
53
54     <!-- Jax rs -->
55     <dependency>
56       <groupId>org.jboss.resteasy</groupId>
57       <artifactId>jaxrs-api</artifactId>
58     </dependency>
59
60     <dependency>
61       <groupId>org.json</groupId>
62       <artifactId>json</artifactId>
63     </dependency>
64
65     <dependency>
66       <groupId>org.opendaylight.controller</groupId>
67       <artifactId>sal-core-api</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.yangtools</groupId>
71       <artifactId>yang-common</artifactId>
72     </dependency>
73
74     <dependency>
75       <groupId>org.opendaylight.yangtools</groupId>
76       <artifactId>yang-model-api</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.yangtools</groupId>
80       <artifactId>yang-model-util</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.yangtools</groupId>
84       <artifactId>yang-parser-api</artifactId>
85     </dependency>
86
87     <dependency>
88       <groupId>org.opendaylight.yangtools</groupId>
89       <artifactId>yang-parser-impl</artifactId>
90     </dependency>
91
92     <dependency>
93       <groupId>org.osgi</groupId>
94       <artifactId>org.osgi.core</artifactId>
95     </dependency>
96
97     <dependency>
98       <groupId>org.slf4j</groupId>
99       <artifactId>slf4j-api</artifactId>
100     </dependency>
101     <dependency>
102       <groupId>org.mockito</groupId>
103       <artifactId>mockito-all</artifactId>
104       <scope>test</scope>
105     </dependency>
106     <dependency>
107       <groupId>org.opendaylight.yangtools</groupId>
108       <artifactId>yang-data-api</artifactId>
109     </dependency>
110   </dependencies>
111
112   <build>
113     <plugins>
114       <plugin>
115         <groupId>org.apache.felix</groupId>
116         <artifactId>maven-bundle-plugin</artifactId>
117         <extensions>true</extensions>
118         <configuration>
119
120           <instructions>
121             <Bundle-Name>MD SAL Rest Api Doc Generator</Bundle-Name>
122             <Import-Package>!org.apache.maven.plugin.logging,
123               !org.apache.maven.project,
124               !org.opendaylight.yangtools.yang2sources.spi,
125               *,
126               com.sun.jersey.spi.container.servlet,
127               org.eclipse.jetty.servlets,
128               org.opendaylight.aaa.shiro.filters,
129               org.opendaylight.aaa.shiro.realm,
130               org.opendaylight.aaa.shiro.web.env,
131               org.apache.shiro.web.env
132             </Import-Package>
133             <Export-Package>
134               com.fasterxml.jackson.datatype.*,
135               org.json
136             </Export-Package>
137             <Bundle-Activator>org.opendaylight.netconf.sal.rest.doc.DocProvider</Bundle-Activator>
138             <Web-ContextPath>/apidoc</Web-ContextPath>
139           </instructions>
140
141         </configuration>
142       </plugin>
143     </plugins>
144   </build>
145 </project>