MVN

org.jmeld : jmeld

Maven & Gradle

Feb 01, 2011
1 usages

JMeld Diff Tool · JMeld is a visual diff and merge tool which is very much inspired after the fantastic 'meld', a gnome program program. It is different in a number of ways: 1. It doesn't have (yet) the many features of meld. 2. For now only the filemerge is working (no directorydiff, no subversion/cvs diff) 3. It is written in java and thus platform independent. 4. It is created to be very fast with large documents.

<dependency>
    <groupId>org.jmeld</groupId>
    <artifactId>jmeld</artifactId>
    <version>2.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.jmeld : jmeld to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.1

All Versions

Choose a version of org.jmeld : jmeld to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.1
jmeld-2.1

How to add a dependency to Maven

Add the following org.jmeld : jmeld maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.jmeld</groupId>
    <artifactId>jmeld</artifactId>
    <version>2.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.jmeld : jmeld gradle dependency to your build.gradle file:

implementation 'org.jmeld:jmeld:2.1'

Gradle Kotlin DSL: Add the following org.jmeld : jmeld gradle kotlin dependency to your build.gradle.kts file:

implementation("org.jmeld:jmeld:2.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.jmeld : jmeld sbt scala dependency to your build.sbt file:

libraryDependencies += "org.jmeld" % "jmeld" % "2.1"

Advertisement