Search Gradle plugins

Version 0.10 (latest)

Created 26 September 2023.

The Gr8 Plugin packaged with external dependencies

Using the plugins DSL:

plugins {
  id("com.gradleup.gr8.external") version "0.10"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.gradleup:gr8-plugin-external:0.10")
  }
}

apply(plugin = "com.gradleup.gr8.external")

Using the plugins DSL:

plugins {
  id "com.gradleup.gr8.external" version "0.10"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.gradleup:gr8-plugin-external:0.10"
  }
}

apply plugin: "com.gradleup.gr8.external"

Learn how to apply plugins to subprojects