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)
Created 26 September 2023.
The Gr8 Plugin packaged with external dependencies
Add this plugin to your build using the plugins DSL:
plugins {
id("com.gradleup.gr8.external") version "0.10"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.gradleup.gr8.external:com.gradleup.gr8.external.gradle.plugin:0.10") }
It can then be applied in the precompiled script plugin:plugins { id("com.gradleup.gr8.external") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.gradleup.gr8.external:com.gradleup.gr8.external.gradle.plugin:0.10") } } apply(plugin = "com.gradleup.gr8.external")
- Applying plugins to all subprojects .