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.39-SNAPSHOT
1.39-SNAPSHOT
Created 25 April 2020.
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.39-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.ocroquette:gradle-extools:1.39-SNAPSHOT")
}
}
apply(plugin = "com.github.ocroquette.extools")
Using the plugins DSL:
plugins {
id "com.github.ocroquette.extools" version "1.39-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.ocroquette:gradle-extools:1.39-SNAPSHOT"
}
}
apply plugin: "com.github.ocroquette.extools"