BUG-980: stop emiting copyright
[controller.git] / opendaylight / northbound / switchmanager / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>commons.opendaylight</artifactId>
7     <version>1.4.2-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10   <artifactId>switchmanager.northbound</artifactId>
11   <version>0.4.2-SNAPSHOT</version>
12   <packaging>bundle</packaging>
13   <dependencies>
14     <dependency>
15       <groupId>junit</groupId>
16       <artifactId>junit</artifactId>
17     </dependency>
18     <dependency>
19       <groupId>org.codehaus.enunciate</groupId>
20       <artifactId>enunciate-core-annotations</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>org.opendaylight.controller</groupId>
24       <artifactId>commons.northbound</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.controller</groupId>
28       <artifactId>containermanager</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.controller</groupId>
32       <artifactId>sal</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.controller</groupId>
36       <artifactId>switchmanager</artifactId>
37     </dependency>
38   </dependencies>
39
40   <build>
41     <plugins>
42
43       <plugin>
44         <groupId>org.apache.felix</groupId>
45         <artifactId>maven-bundle-plugin</artifactId>
46         <version>${bundle.plugin.version}</version>
47         <extensions>true</extensions>
48         <configuration>
49           <instructions>
50             <Import-Package>org.opendaylight.controller.sal.core,
51               org.opendaylight.controller.sal.utils,
52               org.opendaylight.controller.containermanager,
53               org.opendaylight.controller.switchmanager,
54               org.opendaylight.controller.usermanager,
55               org.apache.commons.lang3.tuple,
56               org.apache.commons.logging,
57               com.sun.jersey.spi.container.servlet,
58               org.opendaylight.controller.northbound.commons,
59               org.opendaylight.controller.northbound.commons.exception,
60               org.opendaylight.controller.northbound.commons.utils,
61               org.opendaylight.controller.sal.authorization,
62               javax.ws.rs,
63               javax.ws.rs.core,
64               javax.xml.bind.annotation,
65               javax.xml.bind,
66               org.slf4j,
67               org.apache.catalina.filters,
68               com.fasterxml.jackson.annotation,
69               com.fasterxml.jackson.databind,
70               !org.codehaus.enunciate.jaxrs</Import-Package>
71             <Web-ContextPath>/controller/nb/v2/switchmanager</Web-ContextPath>
72             <Jaxrs-Resources>,${classes;ANNOTATION;javax.ws.rs.Path}</Jaxrs-Resources>
73           </instructions>
74           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
75         </configuration>
76       </plugin>
77       <plugin>
78         <groupId>org.codehaus.enunciate</groupId>
79         <artifactId>maven-enunciate-plugin</artifactId>
80         <dependencies>
81           <dependency>
82             <groupId>org.opendaylight.controller</groupId>
83             <artifactId>sal</artifactId>
84             <version>${sal.version}</version>
85           </dependency>
86         </dependencies>
87       </plugin>
88     </plugins>
89   </build>
90   <scm>
91     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
92     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
93     <tag>HEAD</tag>
94     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
95   </scm>
96 </project>