- Removed sitebuildsettings, the deployment of this and manteinance in
[controller.git] / third-party / net.sf.jung2 / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
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.0-SNAPSHOT</version>
8     <relativePath>../commons/thirdparty</relativePath>
9   </parent>
10   <modelVersion>4.0.0</modelVersion>
11   <groupId>org.opendaylight.controller.thirdparty</groupId>
12   <artifactId>net.sf.jung2</artifactId>
13   <version>2.0.1-SNAPSHOT</version>
14   <packaging>bundle</packaging>
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             <Embed-Dependency>*;scope=compile|runtime;type=!pom;inline=false</Embed-Dependency>
25             <Embed-Transitive>false</Embed-Transitive>
26             <Export-Package>
27               org.apache.commons*,
28               edu.uci.ics.jung.algorithms.blockmodel,
29               edu.uci.ics.jung.algorithms.cluster,
30               edu.uci.ics.jung.algorithms.filters,
31               edu.uci.ics.jung.algorithms.flows,
32               edu.uci.ics.jung.algorithms.generators,
33               edu.uci.ics.jung.algorithms.generators.random,
34               edu.uci.ics.jung.algorithms.layout,
35               edu.uci.ics.jung.algorithms.layout.util,
36               edu.uci.ics.jung.algorithms.metrics,
37               edu.uci.ics.jung.algorithms.scoring,
38               edu.uci.ics.jung.algorithms.scoring.util,
39               edu.uci.ics.jung.algorithms.shortestpath,
40               edu.uci.ics.jung.algorithms.transformation,
41               edu.uci.ics.jung.algorithms.util,
42               edu.uci.ics.jung.graph;-split-package:=merge-first,
43               edu.uci.ics.jung.graph.event,
44               edu.uci.ics.jung.graph.util;-split-package:=merge-first
45             </Export-Package>
46             <Import-Package>
47               !*
48             </Import-Package>
49           </instructions>
50         </configuration>
51       </plugin>
52     </plugins>
53   </build>
54
55   <dependencies>
56     <dependency>
57       <groupId>net.sf.jung</groupId>
58       <artifactId>jung-api</artifactId>
59       <version>2.0.1</version>
60     </dependency>
61     <dependency>
62       <groupId>net.sf.jung</groupId>
63       <artifactId>jung-graph-impl</artifactId>
64       <version>2.0.1</version>
65     </dependency>
66     <dependency>
67       <groupId>net.sourceforge.collections</groupId>
68       <artifactId>collections-generic</artifactId>
69       <version>4.01</version>
70     </dependency>
71   </dependencies>
72 </project>