22036b5d641a1d58fbbe435ce39a817a31b27f01
[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.0-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10
11   <artifactId>routing.dijkstra_implementation</artifactId>
12   <version>0.4.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <build>
16     <plugins>
17       <plugin>
18         <groupId>org.apache.felix</groupId>
19         <artifactId>maven-bundle-plugin</artifactId>
20         <version>2.3.6</version>
21         <extensions>true</extensions>
22         <configuration>
23           <instructions>
24             <Import-Package>
25               org.slf4j,
26               org.opendaylight.controller.sal.routing,
27               org.opendaylight.controller.sal.core,
28               org.opendaylight.controller.sal.topology,
29               org.opendaylight.controller.sal.utils,
30               org.opendaylight.controller.sal.reader,
31               org.apache.commons.collections15,
32               org.opendaylight.controller.switchmanager,
33               org.opendaylight.controller.topologymanager,
34               edu.uci.ics.jung.graph,
35               edu.uci.ics.jung.algorithms.shortestpath,
36               edu.uci.ics.jung.graph.util,
37               org.apache.felix.dm,
38               org.junit;resolution:=optional
39             </Import-Package>
40             <Bundle-Activator>
41               org.opendaylight.controller.routing.dijkstra_implementation.internal.Activator
42             </Bundle-Activator>
43           </instructions>
44           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
45         </configuration>
46       </plugin>
47     </plugins>
48   </build>
49   <dependencies>
50     <dependency>
51       <groupId>org.opendaylight.controller.thirdparty</groupId>
52       <artifactId>net.sf.jung2</artifactId>
53       <version>2.0.1-SNAPSHOT</version>
54     </dependency>
55    <dependency>
56       <groupId>org.opendaylight.controller</groupId>
57       <artifactId>sal</artifactId>
58       <version>0.5.0-SNAPSHOT</version>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.controller</groupId>
62       <artifactId>switchmanager</artifactId>
63       <version>0.4.0-SNAPSHOT</version>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.controller</groupId>
67       <artifactId>topologymanager</artifactId>
68       <version>0.4.0-SNAPSHOT</version>
69     </dependency>
70     <dependency>
71       <groupId>junit</groupId>
72       <artifactId>junit</artifactId>
73       <version>4.8.1</version>
74       <scope>test</scope>
75     </dependency>
76   </dependencies>
77 </project>