How to add a dependency to Maven
Add the following de.cau.cs.kieler.klighd : de.cau.cs.kieler.kgraph.text maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>de.cau.cs.kieler.klighd</groupId>
<artifactId>de.cau.cs.kieler.kgraph.text</artifactId>
<version>2.3.0.v20230606</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following de.cau.cs.kieler.klighd : de.cau.cs.kieler.kgraph.text gradle dependency to your build.gradle
file:
implementation 'de.cau.cs.kieler.klighd:de.cau.cs.kieler.kgraph.text:2.3.0.v20230606'
Gradle Kotlin DSL: Add the following de.cau.cs.kieler.klighd : de.cau.cs.kieler.kgraph.text gradle kotlin dependency to your build.gradle.kts
file:
implementation("de.cau.cs.kieler.klighd:de.cau.cs.kieler.kgraph.text:2.3.0.v20230606")
How to add a dependency to SBT Scala
SBT Scala: Add the following de.cau.cs.kieler.klighd : de.cau.cs.kieler.kgraph.text sbt scala dependency to your build.sbt
file:
libraryDependencies += "de.cau.cs.kieler.klighd" % "de.cau.cs.kieler.kgraph.text" % "2.3.0.v20230606"