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