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 2.6 (latest)

Created 01 May 2023.

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 "2.6"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects