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