MVN

de.cit-ec.tcs.alignment : trees

Maven & Gradle

Oct 26, 2018

TCS Alignment Toolbox Trees · This module provides two packages, 'trees' and 'forests', which provide algorithms to compute edit distances on trees and forests (that is, unordered or ordered lists of trees) respectively. The edit distance is computed according to the tree edit distance algorithm of Zhang and Shasha (1989). The basic tree data structure is defined by the Tree interface in the trees module. Please refer to the javadoc for more detailed information.

<dependency>
    <groupId>de.cit-ec.tcs.alignment</groupId>
    <artifactId>trees</artifactId>
    <version>3.1.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of de.cit-ec.tcs.alignment : trees to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 3.1.1

All Versions

Choose a version of de.cit-ec.tcs.alignment : trees to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
3.1.x
trees-3.1.1
trees-3.1.0

How to add a dependency to Maven

Add the following de.cit-ec.tcs.alignment : trees maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>de.cit-ec.tcs.alignment</groupId>
    <artifactId>trees</artifactId>
    <version>3.1.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following de.cit-ec.tcs.alignment : trees gradle dependency to your build.gradle file:

implementation 'de.cit-ec.tcs.alignment:trees:3.1.1'

Gradle Kotlin DSL: Add the following de.cit-ec.tcs.alignment : trees gradle kotlin dependency to your build.gradle.kts file:

implementation("de.cit-ec.tcs.alignment:trees:3.1.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following de.cit-ec.tcs.alignment : trees sbt scala dependency to your build.sbt file:

libraryDependencies += "de.cit-ec.tcs.alignment" % "trees" % "3.1.1"

Advertisement