Skip to content

Latest commit

 

History

History
45 lines (33 loc) · 1.5 KB

README.md

File metadata and controls

45 lines (33 loc) · 1.5 KB

TrueDiffDetective

TrueDiffDetective extends DiffDetective by the option to chose truediff as diffing algorithm. It is (mainly) implemented in Scala and using sbt as build tool (like truediff), but can easily be used in Java/Maven projects as well.

Setup

Requirements and Dependencies

Install Dependencies

DiffDetective and truediff are required in the local Maven repository.

To install DiffDetective using Maven:

git clone https://github.com/VariantSync/DiffDetective.git
cd DiffDetective
mvn install

To install truediff using sbt:

git clone https://gitlab.rlp.net/plmz/truediff.git
cd truediff
sbt publishM2

Install TrueDiffDetective

To install truediff using sbt:

git clone https://github.com/VariantSync/TrueDiffDetective.git
cd TrueDiffDetective
sbt publishM2

Using TrueDiffDetective

To use TrueDiffDetective in a sbt project add dependency:

"org.variantsync" % "truediffdetective_2.13" % "0.1.0-SNAPSHOT"

To use TrueDiffDetective in a Maven project add dependency:

<dependency>
  <groupId>org.variantsync</groupId>
  <artifactId>truediffdetective_2.13</artifactId>
  <version>0.1.0-SNAPSHOT</version>
</dependency>