Merge "Fixed publishDataChangeEvent in 2phase commit"
[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" 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  <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   <tag>HEAD</tag>
15  </scm>
16
17  <artifactId>forwarding.staticrouting</artifactId>
18  <version>0.5.2-SNAPSHOT</version>
19  <packaging>bundle</packaging>
20
21  <build>
22   <plugins>
23    <plugin>
24     <groupId>org.apache.felix</groupId>
25     <artifactId>maven-bundle-plugin</artifactId>
26     <version>${bundle.plugin.version}</version>
27     <extensions>true</extensions>
28     <configuration>
29      <instructions>
30       <Import-Package>
31        org.opendaylight.controller.sal.packet.address,
32        org.opendaylight.controller.sal.utils,
33        org.opendaylight.controller.sal.core,
34        org.opendaylight.controller.configuration,
35        org.opendaylight.controller.hosttracker,
36        org.opendaylight.controller.hosttracker.hostAware,
37        org.opendaylight.controller.clustering.services,
38        org.opendaylight.controller.sal.packet,
39        org.opendaylight.controller.sal.routing,
40        org.eclipse.osgi.framework.console,
41        org.osgi.framework,
42        org.slf4j,
43        org.apache.felix.dm
44       </Import-Package>
45       <Export-Package>
46        org.opendaylight.controller.forwarding.staticrouting
47       </Export-Package>
48       <Bundle-Activator>
49        org.opendaylight.controller.forwarding.staticrouting.internal.Activator
50       </Bundle-Activator>
51      </instructions>
52      <manifestLocation>${project.basedir}/META-INF</manifestLocation>
53     </configuration>
54    </plugin>
55   </plugins>
56  </build>
57  <dependencies>
58   <dependency>
59    <groupId>org.opendaylight.controller</groupId>
60    <artifactId>clustering.services</artifactId>
61   </dependency>
62   <dependency>
63    <groupId>org.opendaylight.controller</groupId>
64    <artifactId>hosttracker</artifactId>
65   </dependency>
66   <dependency>
67    <groupId>org.opendaylight.controller</groupId>
68    <artifactId>configuration</artifactId>
69   </dependency>
70   <dependency>
71    <groupId>junit</groupId>
72    <artifactId>junit</artifactId>
73   </dependency>
74   <dependency>
75    <groupId>org.opendaylight.controller</groupId>
76    <artifactId>sal</artifactId>
77   </dependency>
78  </dependencies>
79 </project>