Owner:
Jacob B.
A Gradle plugin for developing Spellscroll plugins. It wires up the Spellscroll API dependency, generates a constants class, builds your optional UI module, and launches the installed Spellscroll app with your plugin loaded for live development.
Sources: https://github.com/Reyzerbit/Spellscroll-Gradle-Plugin
Version 1.0.0
Created 23 June 2026.
A Gradle plugin for developing Spellscroll plugins. It wires up the Spellscroll API dependency, generates a constants class, builds your optional UI module, and launches the installed Spellscroll app with your plugin loaded for live development.
Add this plugin to your build using the plugins DSL:
plugins {
id("app.spellscroll.dev") version "1.0.0"
}
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("app.spellscroll.dev:app.spellscroll.dev.gradle.plugin:1.0.0") }It can then be applied in the precompiled script plugin:plugins { id("app.spellscroll.dev") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("app.spellscroll.dev:app.spellscroll.dev.gradle.plugin:1.0.0") } } apply(plugin = "app.spellscroll.dev") - Applying plugins to all subprojects .