MVN

org.codehaus.gant : gant

Maven & Gradle

Jul 13, 2008

Gant · Gant is a build tool for scripting Ant tasks using Groovy instead of XML to specify the build logic. A Gant build specification is just a Groovy script and so can bring all the power of Groovy to bear directly, something not possible with Ant scripts. Whilst it might be seen as a competitor to Ant, Gant relies on all the Ant tasks for actually doing things, so it is really an alternative way of doing builds using Ant, but using a programming language rather than XML to specify the build rules.

<dependency>
    <groupId>org.codehaus.gant</groupId>
    <artifactId>gant</artifactId>
    <version>1.4.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

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

  • Latest Stable: 1.4.0

All Versions

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

Version Vulnerabilities Updated
1.4.x
gant-1.4.0
1.3.x
gant-1.3.0
1.2.x
gant-1.2.0
1.1.x
gant-1.1.2
gant-1.1.1
gant-1.1.0
1.0.x
gant-1.0.2
gant-1.0.1
gant-1.0.0

How to add a dependency to Maven

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

<dependency>
    <groupId>org.codehaus.gant</groupId>
    <artifactId>gant</artifactId>
    <version>1.4.0</version>
</dependency>

How to add a dependency to Gradle

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

implementation 'org.codehaus.gant:gant:1.4.0'

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

implementation("org.codehaus.gant:gant:1.4.0")

How to add a dependency to SBT Scala

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

libraryDependencies += "org.codehaus.gant" % "gant" % "1.4.0"

Advertisement