studio.o7.remora
Owner: Julian Siebert
o7studios helper plugin for Gradle projects.
https://github.com/o7studios/remora
Sources: https://github.com/o7studios/remora
Version 0.0.9 (latest)
Created 31 December 2024.
o7studios helper plugin for Gradle projects.
Add this plugin to your build using the plugins DSL:
plugins {
id("studio.o7.remora") version "0.0.9"
}
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("studio.o7.remora:studio.o7.remora.gradle.plugin:0.0.9") }
It can then be applied in the precompiled script plugin:plugins { id("studio.o7.remora") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("studio.o7.remora:studio.o7.remora.gradle.plugin:0.0.9") } } apply(plugin = "studio.o7.remora")
- Applying plugins to all subprojects .