Search Gradle plugins

Version 0.1.5 (latest)

Created 24 January 2023.

Sets up Haxe for Godot game development.

Using the plugins DSL:

plugins {
  id("io.github.frontrider.godle-haxe") version "0.1.5"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "io.github.frontrider.godle-haxe" version "0.1.5"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects