Search Gradle plugins

io.github.frontrider.godle

Plugin to manage small tasks around plugins, like addons and the godot binary itself.

https://github.com/Frontrider/Godle

Sources: https://github.com/Frontrider/Godle

Version 0.23.0 (latest)

Created 23 March 2024.

Plugin to manage small tasks around godot, like addons and the godot binary itself.

Using the plugins DSL:

plugins {
  id("io.github.frontrider.godle") version "0.23.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.frontrider.godle:godle:0.23.0")
  }
}

apply(plugin = "io.github.frontrider.godle")

Using the plugins DSL:

plugins {
  id "io.github.frontrider.godle" version "0.23.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.frontrider.godle:godle:0.23.0"
  }
}

apply plugin: "io.github.frontrider.godle"

Learn how to apply plugins to subprojects