OpenDaylight Controller functional modules.
[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   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>routing.dijkstra_implementation</artifactId>
13   <version>0.4.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <build>
17     <plugins>
18       <plugin>
19     <groupId>org.apache.felix</groupId>
20     <artifactId>maven-bundle-plugin</artifactId>
21     <version>2.3.6</version>
22     <extensions>true</extensions>
23     <configuration>
24       <instructions>
25         <Import-Package>
26           org.slf4j,
27           org.opendaylight.controller.sal.routing,
28           org.opendaylight.controller.sal.core,
29           org.opendaylight.controller.sal.topology,
30           org.opendaylight.controller.sal.utils,
31           org.opendaylight.controller.sal.reader,
32           org.apache.commons.collections15,
33           org.opendaylight.controller.switchmanager, 
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     </configuration>
45       </plugin>
46     </plugins>
47   </build>
48   <dependencies>
49     <dependency>
50       <groupId>org.opendaylight.controller.thirdparty</groupId>
51       <artifactId>net.sf.jung2</artifactId>
52       <version>2.0.1-SNAPSHOT</version>
53     </dependency>
54    <dependency>
55       <groupId>org.opendaylight.controller</groupId>
56       <artifactId>sal</artifactId>
57       <version>0.4.0-SNAPSHOT</version>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.controller</groupId>
61       <artifactId>switchmanager</artifactId>
62       <version>0.4.0-SNAPSHOT</version>
63     </dependency>
64     <dependency>
65       <groupId>junit</groupId>
66       <artifactId>junit</artifactId>
67       <version>4.8.1</version>
68       <scope>test</scope>
69     </dependency>
70   </dependencies>
71 </project>