- If a port is already under OF control and then hw LLDP transmit is enabled on it...
[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.0-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>topology.northbound</artifactId>
13   <version>0.4.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <build>
17      <plugins>
18       <plugin>
19         <groupId>org.codehaus.enunciate</groupId>
20         <artifactId>maven-enunciate-plugin</artifactId>
21         <version>${enunciate.version}</version>
22         <dependencies>
23           <dependency>
24             <groupId>org.opendaylight.controller</groupId>
25             <artifactId>sal</artifactId>
26             <version>0.4.0-SNAPSHOT</version>
27           </dependency>
28         </dependencies>
29       </plugin>
30       <plugin>
31           <groupId>org.apache.felix</groupId>
32           <artifactId>maven-bundle-plugin</artifactId>
33           <version>2.3.6</version>
34           <extensions>true</extensions>
35           <configuration>
36           <instructions>
37             <Export-Package>
38             </Export-Package>
39             <Import-Package>
40               org.opendaylight.controller.containermanager,
41               org.opendaylight.controller.northbound.commons,
42               org.opendaylight.controller.northbound.commons.exception,
43               org.opendaylight.controller.sal.core,
44               org.opendaylight.controller.sal.packet,
45               org.opendaylight.controller.sal.packet.address,
46               org.opendaylight.controller.sal.utils,
47               org.opendaylight.controller.switchmanager,
48               org.opendaylight.controller.topologymanager,
49               com.sun.jersey.spi.container.servlet,
50               javax.ws.rs,
51               javax.ws.rs.core,
52               javax.xml.bind,
53               javax.xml.bind.annotation,
54               org.slf4j,
55               com.sun.jersey.spi.spring.container.servlet,
56               org.springframework.web.context,
57               org.springframework.web,
58               org.springframework.web.servlet,
59               org.springframework.web.filter,
60               org.springframework.security.config,
61               org.springframework.security.web.authentication,
62               org.springframework.security.web.authentication.www,
63               !org.codehaus.enunciate.jaxrs
64             </Import-Package>
65             <Web-ContextPath>/controller/nb/v2/topology</Web-ContextPath>
66           </instructions>
67           </configuration>
68       </plugin>
69     </plugins>
70   </build>
71   <dependencies>
72     <dependency>
73       <groupId>org.codehaus.enunciate</groupId>
74       <artifactId>enunciate-core-annotations</artifactId>
75       <version>${enunciate.version}</version>
76     </dependency>
77         <dependency>
78           <groupId>org.opendaylight.controller</groupId>
79           <artifactId>containermanager</artifactId>
80           <version>0.4.0-SNAPSHOT</version>
81         </dependency>
82         <dependency>
83           <groupId>org.opendaylight.controller</groupId>
84           <artifactId>commons.northbound</artifactId>
85           <version>0.4.0-SNAPSHOT</version>
86         </dependency>
87         <dependency>
88           <groupId>org.opendaylight.controller</groupId>
89           <artifactId>sal</artifactId>
90           <version>0.4.0-SNAPSHOT</version>
91         </dependency>
92         <dependency>
93           <groupId>org.opendaylight.controller</groupId>
94           <artifactId>topologymanager</artifactId>
95           <version>0.4.0-SNAPSHOT</version>
96         </dependency>
97     <dependency>
98       <groupId>org.opendaylight.controller.thirdparty</groupId>
99       <artifactId>com.sun.jersey.jersey-servlet</artifactId>
100       <version>1.17-SNAPSHOT</version>
101     </dependency>
102   </dependencies>
103 </project>