com.github.ocroquette.extools
Owner: Olivier Croquette
A plugin that allows to download and use external tools like compilers or IDE automatically
https://github.com/ocroquette/gradle-extools
Sources: https://github.com/ocroquette/gradle-extools.git
Version 1.25
1.25
Created 11 September 2018.
A plugin that allows to download and use external tools like compilers or IDE automatically
Using the plugins DSL:
plugins {
id("com.github.ocroquette.extools") version "1.25"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.ocroquette:gradle-extools:1.25")
}
}
apply(plugin = "com.github.ocroquette.extools")
Using the plugins DSL:
plugins {
id "com.github.ocroquette.extools" version "1.25"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.ocroquette:gradle-extools:1.25"
}
}
apply plugin: "com.github.ocroquette.extools"