Merge "Prevent ConfigPusher from killing its thread"
[controller.git] / opendaylight / routing / dijkstra_implementation / 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.1-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>routing.dijkstra_implementation</artifactId>
18   <version>0.4.1-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.slf4j,
32               org.opendaylight.controller.sal.routing,
33               org.opendaylight.controller.sal.core,
34               org.opendaylight.controller.sal.topology,
35               org.opendaylight.controller.sal.utils,
36               org.opendaylight.controller.sal.reader,
37               org.opendaylight.controller.clustering.services,
38               org.apache.commons.collections15,
39               org.opendaylight.controller.switchmanager,
40               org.opendaylight.controller.topologymanager,
41               edu.uci.ics.jung.graph,
42               edu.uci.ics.jung.algorithms.shortestpath,
43               edu.uci.ics.jung.graph.util,
44               org.apache.felix.dm,
45               org.osgi.framework,
46               org.apache.felix.service.command,
47               org.junit;resolution:=optional
48             </Import-Package>
49             <Bundle-Activator>
50               org.opendaylight.controller.routing.dijkstra_implementation.internal.Activator
51             </Bundle-Activator>
52           </instructions>
53           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
54         </configuration>
55       </plugin>
56     </plugins>
57   </build>
58   <dependencies>
59   <dependency>
60    <groupId>org.opendaylight.controller</groupId>
61    <artifactId>clustering.services</artifactId>
62   </dependency>
63    <dependency>
64       <groupId>org.opendaylight.controller</groupId>
65       <artifactId>sal</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.controller</groupId>
69       <artifactId>switchmanager</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.controller</groupId>
73       <artifactId>topologymanager</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>junit</groupId>
77       <artifactId>junit</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.controller.thirdparty</groupId>
81       <artifactId>net.sf.jung2</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>equinoxSDK381</groupId>
85       <artifactId>org.apache.felix.gogo.runtime</artifactId>
86     </dependency>
87   </dependencies>
88 </project>