Search Gradle plugins

com.squedgy.mod-the-spire

Owner: SquEdgy

Helps an STS (Slay the Spire) mod developer create and maintain their ModTheSpire.json file. May be updated to include other features in the future.

https://gitlab.com/squedgy/squad-the-spire

Sources: https://gitlab.com/squedgy/squad-the-spire

Version 0.0.1 (latest)

Created 31 March 2025.

Helps an STS (Slay the Spire) mod developer create and maintain their ModTheSpire.json file. May be updated to include other features in the future.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.squedgy.mod-the-spire") version "0.0.1"
}

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.squedgy.mod-the-spire:com.squedgy.mod-the-spire.gradle.plugin:0.0.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.squedgy.mod-the-spire")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.squedgy.mod-the-spire:com.squedgy.mod-the-spire.gradle.plugin:0.0.1")
      }
    }
    
    apply(plugin = "com.squedgy.mod-the-spire")
  • Applying plugins to all subprojects .