Merge "BUG-980: stop emiting copyright"
[controller.git] / opendaylight / northbound / usermanager / 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
11   <artifactId>usermanager.northbound</artifactId>
12   <version>0.0.2-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <dependencies>
15     <dependency>
16       <groupId>org.codehaus.enunciate</groupId>
17       <artifactId>enunciate-core-annotations</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.opendaylight.controller</groupId>
21       <artifactId>commons.northbound</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.controller</groupId>
25       <artifactId>sal</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>usermanager</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>junit</groupId>
33       <artifactId>junit</artifactId>
34       <scope>test</scope>
35     </dependency>
36   </dependencies>
37   <build>
38     <plugins>
39       <plugin>
40         <groupId>org.apache.felix</groupId>
41         <artifactId>maven-bundle-plugin</artifactId>
42         <extensions>true</extensions>
43         <configuration>
44           <instructions>
45             <Export-Package></Export-Package>
46             <Import-Package>org.opendaylight.controller.sal.utils,
47               org.opendaylight.controller.northbound.commons,
48               org.opendaylight.controller.northbound.commons.exception,
49               org.opendaylight.controller.northbound.commons.utils,
50               com.sun.jersey.spi.container.servlet,
51               org.opendaylight.controller.sal.authorization,
52               org.opendaylight.controller.usermanager,
53               javax.ws.rs,
54               javax.ws.rs.core,
55               javax.xml.bind,
56               javax.xml.bind.annotation,
57               org.slf4j,
58               org.apache.catalina.filters,
59               com.fasterxml.jackson.jaxrs.base,
60               com.fasterxml.jackson.jaxrs.json,
61               !org.codehaus.enunciate.jaxrs</Import-Package>
62             <Export-Package></Export-Package>
63             <Web-ContextPath>/controller/nb/v2/usermanager</Web-ContextPath>
64             <Jaxrs-Resources>,${classes;ANNOTATION;javax.ws.rs.Path}</Jaxrs-Resources>
65           </instructions>
66           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
67         </configuration>
68       </plugin>
69       <plugin>
70         <groupId>org.codehaus.enunciate</groupId>
71         <artifactId>maven-enunciate-plugin</artifactId>
72       </plugin>
73     </plugins>
74   </build>
75   <scm>
76     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
77     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
78     <tag>HEAD</tag>
79     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
80   </scm>
81 </project>