Adding auto-sorting plugin to all Controller via parent/pom.xml
[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.2-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10
11   <artifactId>routing.dijkstra_implementation</artifactId>
12   <version>0.4.2-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <dependencies>
15     <dependency>
16       <groupId>equinoxSDK381</groupId>
17       <artifactId>org.apache.felix.gogo.runtime</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>junit</groupId>
21       <artifactId>junit</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.controller</groupId>
25       <artifactId>clustering.services</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>sal</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>switchmanager</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.controller</groupId>
37       <artifactId>topologymanager</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.controller.thirdparty</groupId>
41       <artifactId>net.sf.jung2</artifactId>
42     </dependency>
43   </dependencies>
44
45   <build>
46     <plugins>
47       <plugin>
48         <groupId>org.apache.felix</groupId>
49         <artifactId>maven-bundle-plugin</artifactId>
50         <version>${bundle.plugin.version}</version>
51         <extensions>true</extensions>
52         <configuration>
53           <instructions>
54             <Import-Package>org.slf4j,
55               org.opendaylight.controller.sal.routing,
56               org.opendaylight.controller.sal.core,
57               org.opendaylight.controller.sal.topology,
58               org.opendaylight.controller.sal.utils,
59               org.opendaylight.controller.sal.reader,
60               org.opendaylight.controller.clustering.services,
61               org.apache.commons.collections15,
62               org.opendaylight.controller.switchmanager,
63               org.opendaylight.controller.topologymanager,
64               edu.uci.ics.jung.graph,
65               edu.uci.ics.jung.algorithms.shortestpath,
66               edu.uci.ics.jung.graph.util,
67               org.apache.felix.dm,
68               org.osgi.framework,
69               org.apache.felix.service.command,
70               org.junit;resolution:=optional</Import-Package>
71             <Bundle-Activator>org.opendaylight.controller.routing.dijkstra_implementation.internal.Activator</Bundle-Activator>
72           </instructions>
73           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
74         </configuration>
75       </plugin>
76     </plugins>
77   </build>
78   <scm>
79     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
80     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
81     <tag>HEAD</tag>
82     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
83   </scm>
84 </project>