io.github.frontrider.godle-haxe
Owner: András Gábor Kis
Sets up Gaxe for Godot game development.
https://github.com/Frontrider/Godle-haxe
Sources: https://github.com/Frontrider/Godle-haxe
Version 0.1.5 (latest)
0.1.5
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"