Merge "Fixed publishDataChangeEvent in 2phase commit"
[controller.git] / opendaylight / northbound / topology / 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>topology.northbound</artifactId>
18   <version>0.4.2-SNAPSHOT</version>
19   <packaging>bundle</packaging>
20
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             <Export-Package>
43             </Export-Package>
44             <Import-Package>
45               org.opendaylight.controller.containermanager,
46               org.opendaylight.controller.northbound.commons,
47               org.opendaylight.controller.northbound.commons.exception,
48               org.opendaylight.controller.northbound.commons.utils,
49               org.opendaylight.controller.sal.core,
50               org.opendaylight.controller.sal.packet,
51               org.opendaylight.controller.sal.authorization,
52               org.opendaylight.controller.sal.packet.address,
53               org.opendaylight.controller.sal.utils,
54               org.opendaylight.controller.switchmanager,
55               org.opendaylight.controller.usermanager,
56               org.opendaylight.controller.topologymanager,
57               com.sun.jersey.spi.container.servlet,
58               com.fasterxml.jackson.annotation,
59               javax.ws.rs,
60               javax.ws.rs.core,
61               javax.xml.bind,
62               javax.xml.bind.annotation,
63               org.slf4j,
64               org.apache.catalina.filters,
65               com.fasterxml.jackson.jaxrs.base,
66               com.fasterxml.jackson.jaxrs.json,
67               !org.codehaus.enunciate.jaxrs
68             </Import-Package>
69             <Web-ContextPath>/controller/nb/v2/topology</Web-ContextPath>
70             <Jaxrs-Resources>,${classes;ANNOTATION;javax.ws.rs.Path}</Jaxrs-Resources>
71           </instructions>
72           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
73         </configuration>
74       </plugin>
75     </plugins>
76   </build>
77   <dependencies>
78     <dependency>
79       <groupId>org.codehaus.enunciate</groupId>
80       <artifactId>enunciate-core-annotations</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.controller</groupId>
84       <artifactId>containermanager</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.controller</groupId>
88       <artifactId>commons.northbound</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.controller</groupId>
92       <artifactId>sal</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.controller</groupId>
96       <artifactId>topologymanager</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>junit</groupId>
100       <artifactId>junit</artifactId>
101     </dependency>
102   </dependencies>
103 </project>