Fixed northbound references to SAL
[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               org.codehaus.jackson.jaxrs,
61               !org.codehaus.enunciate.jaxrs
62             </Import-Package>
63             <Export-Package>
64             </Export-Package>
65             <Web-ContextPath>/controller/nb/v2/flowprogrammer</Web-ContextPath>
66             <Jaxrs-Resources>,${classes;ANNOTATION;javax.ws.rs.Path}</Jaxrs-Resources>
67           </instructions>
68           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
69         </configuration>
70       </plugin>
71     </plugins>
72   </build>
73   <dependencies>
74     <dependency>
75       <groupId>org.opendaylight.controller</groupId>
76       <artifactId>containermanager</artifactId>
77       <version>${containermanager.version}</version>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.controller</groupId>
81       <artifactId>switchmanager</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.controller</groupId>
85       <artifactId>forwardingrulesmanager</artifactId>
86       <version>${forwardingrulesmanager.version}</version>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.controller</groupId>
90       <artifactId>sal</artifactId>
91       <version>${sal.version}</version>
92     </dependency>
93     <dependency>
94       <groupId>org.codehaus.enunciate</groupId>
95       <artifactId>enunciate-core-annotations</artifactId>
96       <version>${enunciate.version}</version>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.controller</groupId>
100       <artifactId>commons.northbound</artifactId>
101       <version>${commons.northbound.version}</version>
102     </dependency>
103     <dependency>
104       <groupId>junit</groupId>
105       <artifactId>junit</artifactId>
106     </dependency>
107   </dependencies>
108 </project>