Merge "BUG-972: correct Precondition"
[controller.git] / opendaylight / samples / northbound / loadbalancer / 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>samples.loadbalancer.northbound</artifactId>
12   <version>0.4.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>containermanager</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>hosttracker</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>sal</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.controller</groupId>
37       <artifactId>samples.loadbalancer</artifactId>
38     </dependency>
39   </dependencies>
40
41   <build>
42     <plugins>
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.samples.loadbalancer,
51               org.opendaylight.controller.samples.loadbalancer.entities,
52               org.opendaylight.controller.samples.loadbalancer.internal,
53               org.opendaylight.controller.samples.loadbalancer.policies,
54               org.opendaylight.controller.hosttracker,
55               org.opendaylight.controller.sal.core,
56               org.opendaylight.controller.sal.utils,
57               org.opendaylight.controller.containermanager,
58               org.opendaylight.controller.switchmanager,
59               org.apache.commons.logging,
60               com.sun.jersey.spi.container.servlet,
61               org.opendaylight.controller.northbound.commons,
62               org.opendaylight.controller.northbound.commons.exception,
63               javax.ws.rs,
64               javax.ws.rs.core,
65               javax.xml.bind.annotation,
66               javax.xml.bind,
67               org.slf4j,
68               org.apache.catalina.filters,
69               com.fasterxml.jackson.jaxrs.base,
70               com.fasterxml.jackson.jaxrs.json,
71               !org.codehaus.enunciate.jaxrs</Import-Package>
72             <Web-ContextPath>/one/nb/v2/lb</Web-ContextPath>
73             <Jaxrs-Resources>,${classes;ANNOTATION;javax.ws.rs.Path}</Jaxrs-Resources>
74           </instructions>
75           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
76         </configuration>
77       </plugin>
78       <plugin>
79         <groupId>org.codehaus.enunciate</groupId>
80         <artifactId>maven-enunciate-plugin</artifactId>
81         <dependencies>
82           <dependency>
83             <groupId>org.opendaylight.controller</groupId>
84             <artifactId>sal</artifactId>
85             <version>0.7.1-SNAPSHOT</version>
86           </dependency>
87         </dependencies>
88       </plugin>
89     </plugins>
90   </build>
91   <scm>
92     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
93     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
94     <tag>HEAD</tag>
95     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
96   </scm>
97 </project>