Merge "Bug fix for ForwardingRulesManager: addFlow and addFlowAsync are reversed."
[controller.git] / opendaylight / samples / simpleforwarding / 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>samples.simpleforwarding</artifactId>
13   <version>0.4.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <build>
17     <plugins>
18       <plugin>
19         <groupId>org.apache.felix</groupId>
20         <artifactId>maven-bundle-plugin</artifactId>
21         <version>2.3.6</version>
22         <extensions>true</extensions>
23         <configuration>
24           <instructions>
25             <Import-Package>
26                           org.opendaylight.controller.sal.utils,
27                           org.opendaylight.controller.sal.core,
28               org.opendaylight.controller.forwardingrulesmanager,
29               org.opendaylight.controller.hosttracker,
30               org.opendaylight.controller.hosttracker.hostAware,
31               org.opendaylight.controller.switchmanager,
32               org.opendaylight.controller.clustering.services,
33               org.opendaylight.controller.sal.action,
34               org.opendaylight.controller.sal.flowprogrammer,
35               org.opendaylight.controller.sal.match,
36               org.opendaylight.controller.sal.packet,
37               org.opendaylight.controller.sal.routing,
38               org.opendaylight.controller.topologymanager,
39               org.apache.commons.lang3.builder,
40                   org.junit;resolution:=optional,
41                   org.slf4j,
42               org.apache.felix.dm
43             </Import-Package>
44             <Bundle-Activator>
45                   org.opendaylight.controller.samples.simpleforwarding.internal.Activator
46                 </Bundle-Activator>
47           </instructions>
48         </configuration>
49       </plugin>
50     </plugins>
51   </build>
52   <dependencies>
53     <dependency>
54       <groupId>org.opendaylight.controller</groupId>
55       <artifactId>topologymanager</artifactId>
56       <version>0.4.0-SNAPSHOT</version>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.controller</groupId>
60       <artifactId>forwardingrulesmanager</artifactId>
61       <version>0.4.0-SNAPSHOT</version>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.controller</groupId>
65       <artifactId>hosttracker</artifactId>
66       <version>0.4.0-SNAPSHOT</version>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.controller</groupId>
70       <artifactId>switchmanager</artifactId>
71       <version>0.4.0-SNAPSHOT</version>
72     </dependency>
73     <dependency>
74       <groupId>junit</groupId>
75       <artifactId>junit</artifactId>
76       <version>4.8.1</version>
77       <scope>test</scope>
78     </dependency>
79         <dependency>
80       <groupId>org.opendaylight.controller</groupId>
81       <artifactId>sal</artifactId>
82       <version>0.5.0-SNAPSHOT</version>
83         </dependency>    
84   </dependencies>
85 </project>