Merge "Silent false positive, and enhance real error message"
[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   <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   </scm>
15
16   <modelVersion>4.0.0</modelVersion>
17   <groupId>org.opendaylight.controller.thirdparty</groupId>
18   <artifactId>net.sf.jung2</artifactId>
19   <version>2.0.1-SNAPSHOT</version>
20   <packaging>bundle</packaging>
21   <build>
22     <plugins>
23       <plugin>
24         <groupId>org.apache.felix</groupId>
25         <artifactId>maven-bundle-plugin</artifactId>
26         <version>2.3.6</version>
27         <extensions>true</extensions>
28         <configuration>
29           <instructions>
30             <Embed-Dependency>*;scope=compile|runtime;type=!pom;inline=false</Embed-Dependency>
31             <Embed-Transitive>false</Embed-Transitive>
32             <Export-Package>
33               org.apache.commons*,
34               edu.uci.ics.jung.algorithms.blockmodel,
35               edu.uci.ics.jung.algorithms.cluster,
36               edu.uci.ics.jung.algorithms.filters,
37               edu.uci.ics.jung.algorithms.flows,
38               edu.uci.ics.jung.algorithms.generators,
39               edu.uci.ics.jung.algorithms.generators.random,
40               edu.uci.ics.jung.algorithms.layout,
41               edu.uci.ics.jung.algorithms.layout.util,
42               edu.uci.ics.jung.algorithms.metrics,
43               edu.uci.ics.jung.algorithms.scoring,
44               edu.uci.ics.jung.algorithms.scoring.util,
45               edu.uci.ics.jung.algorithms.shortestpath,
46               edu.uci.ics.jung.algorithms.transformation,
47               edu.uci.ics.jung.algorithms.util,
48               edu.uci.ics.jung.graph;-split-package:=merge-first,
49               edu.uci.ics.jung.graph.event,
50               edu.uci.ics.jung.graph.util;-split-package:=merge-first
51             </Export-Package>
52             <Import-Package>
53               !*
54             </Import-Package>
55           </instructions>
56           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
57         </configuration>
58       </plugin>
59     </plugins>
60   </build>
61
62   <dependencies>
63     <dependency>
64       <groupId>net.sf.jung</groupId>
65       <artifactId>jung-api</artifactId>
66       <version>2.0.1</version>
67     </dependency>
68     <dependency>
69       <groupId>net.sf.jung</groupId>
70       <artifactId>jung-graph-impl</artifactId>
71       <version>2.0.1</version>
72     </dependency>
73     <dependency>
74       <groupId>net.sourceforge.collections</groupId>
75       <artifactId>collections-generic</artifactId>
76       <version>4.01</version>
77     </dependency>
78   </dependencies>
79 </project>