Search
Add From Maven Central

You can install the MindFusion.Diagramming library from Maven Central. After integrating it by following any of the following steps, you should be able to import com.mindfusion.diagramming classes and add controls from the library to your UI (DiagramView, NodeListView, Overview, etc).

IntelliJ IDE

In order to integrate Diagramming for Java Swing into your IntelliJ project, select the Project Structure command from File menu, open Modules -> Dependencies page, click the + button and select Library -> From Maven command:

On the Download Library from Maven screen, search for "mindfusion:diagramming", select latest version of the package and click OK:

On Configure Library screen, select the library level and click OK:

Eclipse IDE

From Maven-based project's context menu, select Maven -> Add Dependency command:

On Add Dependency screen, search for "diagramming", select the latest version and click OK:

Maven Projects

In any Maven-based project, you can list eu.mindfusion.diagramming package as dependency in pom.xml and let the build system take care of downloading and integrating the jar file:

pom.xml  Copy Code

<dependency>
    <groupId>eu.mindfusion</groupId>
    <artifactId>diagramming</artifactId>
    <version>4.5.1</version>
</dependency>

Gradle Projects

In any Gradle-based project, you can list eu.mindfusion.diagramming package as dependency in build.gradle and let the build system take care of downloading and integrating the jar file:

build.gradle  Copy Code

dependencies {
    implementation 'eu.mindfusion:diagramming:4.5.1'
}