Merge "Adding another constructor to ContainerFlowConfig to take dlVlan. Being an...
[controller.git] / third-party / net.sf.jung2 / 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/maven-v4_0_0.xsd">
3   <!-- Get some common settings for the project we are using it in -->
4   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>commons.thirdparty</artifactId>
7     <version>1.1.1-SNAPSHOT</version>
8     <relativePath>../commons/thirdparty</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   <modelVersion>4.0.0</modelVersion>
18   <groupId>org.opendaylight.controller.thirdparty</groupId>
19   <artifactId>net.sf.jung2</artifactId>
20   <version>2.0.2-SNAPSHOT</version>
21   <packaging>bundle</packaging>
22   <build>
23     <plugins>
24       <plugin>
25         <groupId>org.apache.felix</groupId>
26         <artifactId>maven-bundle-plugin</artifactId>
27         <version>2.3.6</version>
28         <extensions>true</extensions>
29         <configuration>
30           <instructions>
31             <Embed-Dependency>*;scope=compile|runtime;type=!pom;inline=false</Embed-Dependency>
32             <Embed-Transitive>false</Embed-Transitive>
33             <Export-Package>
34               org.apache.commons*,
35               edu.uci.ics.jung.algorithms.blockmodel,
36               edu.uci.ics.jung.algorithms.cluster,
37               edu.uci.ics.jung.algorithms.filters,
38               edu.uci.ics.jung.algorithms.flows,
39               edu.uci.ics.jung.algorithms.generators,
40               edu.uci.ics.jung.algorithms.generators.random,
41               edu.uci.ics.jung.algorithms.layout,
42               edu.uci.ics.jung.algorithms.layout.util,
43               edu.uci.ics.jung.algorithms.metrics,
44               edu.uci.ics.jung.algorithms.scoring,
45               edu.uci.ics.jung.algorithms.scoring.util,
46               edu.uci.ics.jung.algorithms.shortestpath,
47               edu.uci.ics.jung.algorithms.transformation,
48               edu.uci.ics.jung.algorithms.util,
49               edu.uci.ics.jung.graph;-split-package:=merge-first,
50               edu.uci.ics.jung.graph.event,
51               edu.uci.ics.jung.graph.util;-split-package:=merge-first
52             </Export-Package>
53             <Import-Package>
54               !*
55             </Import-Package>
56           </instructions>
57           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
58         </configuration>
59       </plugin>
60     </plugins>
61   </build>
62
63   <dependencies>
64     <dependency>
65       <groupId>net.sf.jung</groupId>
66       <artifactId>jung-api</artifactId>
67       <version>2.0.1</version>
68     </dependency>
69     <dependency>
70       <groupId>net.sf.jung</groupId>
71       <artifactId>jung-graph-impl</artifactId>
72       <version>2.0.1</version>
73     </dependency>
74     <dependency>
75       <groupId>net.sourceforge.collections</groupId>
76       <artifactId>collections-generic</artifactId>
77       <version>4.01</version>
78     </dependency>
79   </dependencies>
80 </project>