jgrapht-ext-bundle
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.javabits.jgrapht</groupId> <artifactId>jgrapht-ext-bundle</artifactId> <version>0.9.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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/xsd/maven-4.0.0.xsd"> <parent> <artifactId>jgrapht</artifactId> <groupId>org.javabits.jgrapht</groupId> <version>0.9.3</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>jgrapht-ext-bundle</artifactId> <name>JGraphT - Ext - Bundle</name> <packaging>bundle</packaging> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>jgrapht-ext</artifactId> </dependency> <dependency> <groupId>org.tinyjee.jgraphx</groupId> <artifactId>jgraphx</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>jgraph</groupId> <artifactId>jgraph</artifactId> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <Export-Package>org.jgrapht.ext</Export-Package> <Import-Package>javax.*;resolution:="optional",*</Import-Package> <Embed-Dependency>*;scope=compile|provided;inline=true</Embed-Dependency> </instructions> </configuration> </plugin> </plugins> </build> </project>