28d578bde9e7a64089732853ccee0eae233850d7
[controller.git] / opendaylight / samples / reactiveforwarding / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4   xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5   <modelVersion>4.0.0</modelVersion>
6   <parent>
7     <groupId>org.opendaylight.controller</groupId>
8     <artifactId>commons.opendaylight</artifactId>
9     <version>1.4.0-SNAPSHOT</version>
10     <relativePath>../../commons/opendaylight</relativePath>
11   </parent>
12   <groupId>org.opendaylight.controller</groupId>
13   <artifactId>samples.reactiveforwarding</artifactId>
14   <version>0.4.0-SNAPSHOT</version>
15   <packaging>bundle</packaging>
16
17   <build>
18     <plugins>
19       <plugin>
20         <groupId>org.apache.felix</groupId>
21         <artifactId>maven-bundle-plugin</artifactId>
22         <version>2.3.6</version>
23         <extensions>true</extensions>
24         <configuration>
25           <instructions>
26             <Export-Package>
27             </Export-Package>
28             <Import-Package>
29               org.opendaylight.controller.sal.core,
30               org.opendaylight.controller.sal.utils,
31               org.opendaylight.controller.sal.action,
32               org.opendaylight.controller.sal.match,
33               org.opendaylight.controller.sal.packet,
34               org.opendaylight.controller.sal.routing,
35               org.opendaylight.controller.sal.flowprogrammer,
36               org.opendaylight.controller.sal.packet.address,
37               org.opendaylight.controller.hosttracker,
38               org.opendaylight.controller.hosttracker.hostAware,
39               org.opendaylight.controller.topologymanager,
40               org.opendaylight.controller.forwardingrulesmanager,
41               org.opendaylight.controller.switchmanager,
42               org.opendaylight.controller.clustering.services,
43               javax.xml.bind.annotation,
44               javax.xml.bind,
45               org.apache.felix.dm,
46               org.apache.commons.lang3,
47               org.apache.commons.lang3.builder,
48               org.osgi.service.component,
49               org.slf4j,
50               org.eclipse.osgi.framework.console,
51               org.osgi.framework
52             </Import-Package>
53             <Bundle-Activator>
54               org.opendaylight.controller.samples.reactiveforwarding.internal.Activator
55             </Bundle-Activator>
56             <Service-Component>
57             </Service-Component>
58           </instructions>
59         </configuration>
60       </plugin>
61     </plugins>
62   </build>
63   <dependencies>
64     <dependency>
65       <groupId>org.opendaylight.controller</groupId>
66       <artifactId>topologymanager</artifactId>
67       <version>0.4.0-SNAPSHOT</version>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.controller</groupId>
71       <artifactId>switchmanager</artifactId>
72       <version>0.4.0-SNAPSHOT</version>
73     </dependency>
74       <dependency>
75           <groupId>org.opendaylight.controller</groupId>
76           <artifactId>forwardingrulesmanager</artifactId>
77           <version>0.4.0-SNAPSHOT</version>
78       </dependency>
79       <dependency>
80           <groupId>org.opendaylight.controller</groupId>
81           <artifactId>hosttracker</artifactId>
82           <version>0.4.0-SNAPSHOT</version>
83       </dependency>
84     <dependency>
85       <groupId>org.opendaylight.controller</groupId>
86       <artifactId>sal</artifactId>
87       <version>0.4.0-SNAPSHOT</version>
88     </dependency>
89   </dependencies>
90 </project>