BUG-704 Remove pax from netconf identity-ref 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.2-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10
11   <artifactId>samples.simpleforwarding</artifactId>
12   <version>0.4.2-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <dependencies>
15     <dependency>
16       <groupId>junit</groupId>
17       <artifactId>junit</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.opendaylight.controller</groupId>
21       <artifactId>forwardingrulesmanager</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.controller</groupId>
25       <artifactId>hosttracker</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>sal</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>switchmanager</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.controller</groupId>
37       <artifactId>topologymanager</artifactId>
38     </dependency>
39   </dependencies>
40
41   <build>
42     <plugins>
43       <plugin>
44         <groupId>org.apache.felix</groupId>
45         <artifactId>maven-bundle-plugin</artifactId>
46         <version>${bundle.plugin.version}</version>
47         <extensions>true</extensions>
48         <configuration>
49           <instructions>
50             <Import-Package>org.opendaylight.controller.sal.utils,
51               org.opendaylight.controller.sal.core,
52               org.opendaylight.controller.forwardingrulesmanager,
53               org.opendaylight.controller.hosttracker,
54               org.opendaylight.controller.hosttracker.hostAware,
55               org.opendaylight.controller.switchmanager,
56               org.opendaylight.controller.clustering.services,
57               org.opendaylight.controller.sal.action,
58               org.opendaylight.controller.sal.flowprogrammer,
59               org.opendaylight.controller.sal.inventory,
60               org.opendaylight.controller.sal.match,
61               org.opendaylight.controller.sal.packet,
62               org.opendaylight.controller.sal.routing,
63               org.opendaylight.controller.topologymanager,
64               org.apache.commons.lang3.builder,
65               org.junit;resolution:=optional,
66               org.slf4j,
67               org.apache.felix.dm</Import-Package>
68             <Export-Package>org.opendaylight.controller.samples.simpleforwarding</Export-Package>
69             <Bundle-Activator>org.opendaylight.controller.samples.simpleforwarding.internal.Activator</Bundle-Activator>
70           </instructions>
71           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
72         </configuration>
73       </plugin>
74     </plugins>
75   </build>
76   <scm>
77     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
78     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
79     <tag>HEAD</tag>
80     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
81   </scm>
82 </project>