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