Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor to add modules for jungrapht-visualization #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
package com.mastfrog.graph.jung.adapter;
package com.mastfrog.graph.jgrapht.adapter;

import com.mastfrog.abstractions.Wrapper;
import com.mastfrog.abstractions.list.IndexedResolvable;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
package com.mastfrog.graph.jung.adapter;
package com.mastfrog.graph.jgrapht.adapter;

import com.mastfrog.abstractions.list.IndexedResolvable;
import com.mastfrog.graph.IntGraph;
Expand Down
71 changes: 71 additions & 0 deletions mastfrog-jgrapht-adapter/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.mastfrog</groupId>
<artifactId>visual-library-jung</artifactId>
<version>2.3</version>
</parent>
<artifactId>mastfrog-jgrapht-adapter</artifactId>
<description>Adapters to wrapper com.mastfrog:graph bit-set based graphs as JUNG graphs</description>
<url>https://github.com:timboudreau/vl-jung</url>
<name>Visual Library + Mastfrog Graph Adapters</name>
<scm>
<url>git@github.com:timboudreau/vl-jung.git</url>
<connection>scm:git:https://github.com:timboudreau/vl-jung.git</connection>
<developerConnection>git@github.com:timboudreau/vl-jung.git</developerConnection>
</scm>
<issueManagement>
<system>Github</system>
<url>https://github.com/timboudreau/vl-jung/issues</url>
</issueManagement>
<organization>
<name>Mastfrog Technologies</name>
<url>https://mastfrog.com</url>
</organization>
<licenses>
<license>
<name>BSD-2-Clause</name>
<url>https://opensource.org/licenses/BSD-2-Clause</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>timboudreau</id>
<name>Tim Boudreau</name>
<url>https://timboudreau.com</url>
<email>tim+github@timboudreau.com</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>com.mastfrog</groupId>
<artifactId>abstractions</artifactId>
</dependency>
<dependency>
<groupId>com.mastfrog</groupId>
<artifactId>graph</artifactId>
</dependency>
<dependency>
<groupId>org.jgrapht</groupId>
<artifactId>jgrapht-core</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>vl-jungrapht-demo</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
Loading