com.gradleup.gr8.external
Owner: GradleUp plugins
The Gr8 Plugin packaged with external dependencies
https://github.com/GradleUp/gr8
Sources: https://github.com/GradleUp/gr8
Version 0.10 (latest)
0.10
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"