How to add a dependency to Maven
Add the following it.sephiroth.gradle.plugin : easy-git maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>it.sephiroth.gradle.plugin</groupId>
<artifactId>easy-git</artifactId>
<version>1.0.24</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following it.sephiroth.gradle.plugin : easy-git gradle dependency to your build.gradle
file:
implementation 'it.sephiroth.gradle.plugin:easy-git:1.0.24'
Gradle Kotlin DSL: Add the following it.sephiroth.gradle.plugin : easy-git gradle kotlin dependency to your build.gradle.kts
file:
implementation("it.sephiroth.gradle.plugin:easy-git:1.0.24")
How to add a dependency to SBT Scala
SBT Scala: Add the following it.sephiroth.gradle.plugin : easy-git sbt scala dependency to your build.sbt
file:
libraryDependencies += "it.sephiroth.gradle.plugin" % "easy-git" % "1.0.24"