Merge "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         <extensions>true</extensions>
47         <configuration>
48           <instructions>
49             <Import-Package>org.opendaylight.controller.sal.core,
50               org.opendaylight.controller.sal.utils,
51               org.opendaylight.controller.containermanager,
52               org.opendaylight.controller.switchmanager,
53               org.opendaylight.controller.usermanager,
54               org.apache.commons.lang3.tuple,
55               org.apache.commons.logging,
56               com.sun.jersey.spi.container.servlet,
57               org.opendaylight.controller.northbound.commons,
58               org.opendaylight.controller.northbound.commons.exception,
59               org.opendaylight.controller.northbound.commons.utils,
60               org.opendaylight.controller.sal.authorization,
61               javax.ws.rs,
62               javax.ws.rs.core,
63               javax.xml.bind.annotation,
64               javax.xml.bind,
65               org.slf4j,
66               org.apache.catalina.filters,
67               com.fasterxml.jackson.annotation,
68               com.fasterxml.jackson.databind,
69               !org.codehaus.enunciate.jaxrs</Import-Package>
70             <Web-ContextPath>/controller/nb/v2/switchmanager</Web-ContextPath>
71             <Jaxrs-Resources>,${classes;ANNOTATION;javax.ws.rs.Path}</Jaxrs-Resources>
72           </instructions>
73           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
74         </configuration>
75       </plugin>
76       <plugin>
77         <groupId>org.codehaus.enunciate</groupId>
78         <artifactId>maven-enunciate-plugin</artifactId>
79         <dependencies>
80           <dependency>
81             <groupId>org.opendaylight.controller</groupId>
82             <artifactId>sal</artifactId>
83             <version>${sal.version}</version>
84           </dependency>
85         </dependencies>
86       </plugin>
87     </plugins>
88   </build>
89   <scm>
90     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
91     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
92     <tag>HEAD</tag>
93     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
94   </scm>
95 </project>