Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.Gumtree:gumtree:'
}
dependencies {
implementation("com.github.Gumtree:gumtree:")
}
<dependency>
<groupId>com.github.Gumtree</groupId>
<artifactId>gumtree</artifactId>
<version></version>
</dependency>
libraryDependencies += "com.github.Gumtree" % "gumtree" % ""
:dependencies [[com.github.Gumtree/gumtree ""]]
Gumtree is a scientific suite for performing beamline experiments. It contains:
Documentation and tutorials can be found on the Gumtree wiki.
The use and distribution terms for this software are covered by the [Eclipse Public License (EPL v1.0)] (http://www.eclipse.org/legal/epl-v10.html) which can be found in the file LICENSE.html at the root of this distribution. By using this software in any fashion, you are agreeing to be bound by the terms of this license. You must not remove this notice, or any other, from this software.
Gumtree can be cited with a permanent DOI hosted by Zenodo.
The Gumtree project is sponsored by the [Australian Nuclear Science and Technology Organisation (ANSTO)] (http://www.ansto.gov.au).