Initial opendaylight infrastructure commit!!
[controller.git] / third-party / net.sf.jung2 / pom.xml
diff --git a/third-party/net.sf.jung2/pom.xml b/third-party/net.sf.jung2/pom.xml
new file mode 100644 (file)
index 0000000..bfe59c5
--- /dev/null
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <!-- Get some common settings for the project we are using it in -->
+  <parent>
+    <groupId>org.opendaylight.controller</groupId>
+    <artifactId>commons.thirdparty</artifactId>
+    <version>1.1.0-SNAPSHOT</version>
+    <relativePath>../commons/thirdparty</relativePath>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.opendaylight.controller.thirdparty</groupId>
+  <artifactId>net.sf.jung2</artifactId>
+  <version>2.0.1-SNAPSHOT</version>
+  <packaging>bundle</packaging>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <version>2.3.6</version>
+        <extensions>true</extensions>
+        <configuration>
+          <instructions>
+            <Embed-Dependency>*;scope=compile|runtime;type=!pom;inline=false</Embed-Dependency>
+            <Embed-Transitive>false</Embed-Transitive>
+            <Export-Package>
+              org.apache.commons*,
+              edu.uci.ics.jung.algorithms.blockmodel,
+              edu.uci.ics.jung.algorithms.cluster,
+              edu.uci.ics.jung.algorithms.filters,
+              edu.uci.ics.jung.algorithms.flows,
+              edu.uci.ics.jung.algorithms.generators,
+              edu.uci.ics.jung.algorithms.generators.random,
+              edu.uci.ics.jung.algorithms.layout,
+              edu.uci.ics.jung.algorithms.layout.util,
+              edu.uci.ics.jung.algorithms.metrics,
+              edu.uci.ics.jung.algorithms.scoring,
+              edu.uci.ics.jung.algorithms.scoring.util,
+              edu.uci.ics.jung.algorithms.shortestpath,
+              edu.uci.ics.jung.algorithms.transformation,
+              edu.uci.ics.jung.algorithms.util,
+              edu.uci.ics.jung.graph;-split-package:=merge-first,
+              edu.uci.ics.jung.graph.event,
+              edu.uci.ics.jung.graph.util;-split-package:=merge-first
+            </Export-Package>
+            <Import-Package>
+              !*
+            </Import-Package>
+          </instructions>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <dependencies>
+    <dependency>
+      <groupId>net.sf.jung</groupId>
+      <artifactId>jung-api</artifactId>
+      <version>2.0.1</version>
+    </dependency>
+    <dependency>
+      <groupId>net.sf.jung</groupId>
+      <artifactId>jung-graph-impl</artifactId>
+      <version>2.0.1</version>
+    </dependency>
+    <dependency>
+      <groupId>net.sourceforge.collections</groupId>
+      <artifactId>collections-generic</artifactId>
+      <version>4.01</version>
+    </dependency>
+  </dependencies>
+</project>