Merge "sal-remoterpc-connector: sync ch.qos.logback:logback-classic version"
[controller.git] / opendaylight / forwarding / staticrouting / 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"
3  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4  <modelVersion>4.0.0</modelVersion>
5  <parent>
6   <groupId>org.opendaylight.controller</groupId>
7   <artifactId>commons.opendaylight</artifactId>
8   <version>1.4.1-SNAPSHOT</version>
9   <relativePath>../../commons/opendaylight</relativePath>
10  </parent>
11  <scm>
12   <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
13   <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
14   <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
15   <tag>HEAD</tag>
16  </scm>
17
18  <artifactId>forwarding.staticrouting</artifactId>
19  <version>0.5.1-SNAPSHOT</version>
20  <packaging>bundle</packaging>
21
22  <build>
23   <plugins>
24    <plugin>
25     <groupId>org.apache.felix</groupId>
26     <artifactId>maven-bundle-plugin</artifactId>
27     <version>${bundle.plugin.version}</version>
28     <extensions>true</extensions>
29     <configuration>
30      <instructions>
31       <Import-Package>
32        org.opendaylight.controller.sal.packet.address,
33        org.opendaylight.controller.sal.utils,
34        org.opendaylight.controller.sal.core,
35        org.opendaylight.controller.configuration,
36        org.opendaylight.controller.forwardingrulesmanager,
37        org.opendaylight.controller.hosttracker,
38        org.opendaylight.controller.hosttracker.hostAware,
39        org.opendaylight.controller.clustering.services,
40        org.opendaylight.controller.sal.packet,
41        org.opendaylight.controller.sal.routing,
42        org.opendaylight.controller.topologymanager,
43        org.eclipse.osgi.framework.console,
44        org.osgi.framework,
45        org.slf4j,
46        org.apache.felix.dm,
47        org.apache.commons.lang3.builder
48       </Import-Package>
49       <Export-Package>
50        org.opendaylight.controller.forwarding.staticrouting
51       </Export-Package>
52       <Bundle-Activator>
53        org.opendaylight.controller.forwarding.staticrouting.internal.Activator
54       </Bundle-Activator>
55      </instructions>
56      <manifestLocation>${project.basedir}/META-INF</manifestLocation>
57     </configuration>
58    </plugin>
59   </plugins>
60  </build>
61  <dependencies>
62   <dependency>
63    <groupId>org.opendaylight.controller</groupId>
64    <artifactId>topologymanager</artifactId>
65   </dependency>
66   <dependency>
67    <groupId>org.opendaylight.controller</groupId>
68    <artifactId>forwardingrulesmanager</artifactId>
69   </dependency>
70   <dependency>
71    <groupId>org.opendaylight.controller</groupId>
72    <artifactId>hosttracker</artifactId>
73   </dependency>
74   <dependency>
75    <groupId>org.opendaylight.controller</groupId>
76    <artifactId>configuration</artifactId>
77   </dependency>
78   <dependency>
79    <groupId>junit</groupId>
80    <artifactId>junit</artifactId>
81   </dependency>
82   <dependency>
83    <groupId>org.opendaylight.controller</groupId>
84    <artifactId>sal</artifactId>
85   </dependency>
86  </dependencies>
87 </project>