Search Gradle plugins

com.github.ocroquette.extools

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.9

Created 04 December 2017.

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.9"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.ocroquette:gradle-extools:1.9")
  }
}

apply(plugin = "com.github.ocroquette.extools")

Using the plugins DSL:

plugins {
  id "com.github.ocroquette.extools" version "1.9"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.ocroquette:gradle-extools:1.9"
  }
}

apply plugin: "com.github.ocroquette.extools"

Learn how to apply plugins to subprojects