io.github.intisy.online-gradle
Owner: Intisy
Allows you to use build.gradle files which are not located on your system
https://github.com/intisy/online-gradle
Sources: https://github.com/intisy/online-gradle
Version 1.4.6.2 (latest)
Created 01 December 2024.
Allows you to use build.gradle files which are not located on your system
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.intisy.online-gradle") version "1.4.6.2"
}
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("io.github.intisy.online-gradle:io.github.intisy.online-gradle.gradle.plugin:1.4.6.2") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.intisy.online-gradle") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.intisy.online-gradle:io.github.intisy.online-gradle.gradle.plugin:1.4.6.2") } } apply(plugin = "io.github.intisy.online-gradle")
- Applying plugins to all subprojects .