Fix to remove camel case for Northbound API
[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           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
51         </configuration>
52       </plugin>
53     </plugins>
54   </build>
55
56   <dependencies>
57     <dependency>
58       <groupId>net.sf.jung</groupId>
59       <artifactId>jung-api</artifactId>
60       <version>2.0.1</version>
61     </dependency>
62     <dependency>
63       <groupId>net.sf.jung</groupId>
64       <artifactId>jung-graph-impl</artifactId>
65       <version>2.0.1</version>
66     </dependency>
67     <dependency>
68       <groupId>net.sourceforge.collections</groupId>
69       <artifactId>collections-generic</artifactId>
70       <version>4.01</version>
71     </dependency>
72   </dependencies>
73 </project>