org.shoebox.haxe
Owner: johann martinache
Haxe compiler wrapper in Gradle
https://github.com/shoebox/gradle-haxe
Sources: https://github.com/shoebox/gradle-haxe
Using the plugins DSL:
plugins {
id("org.shoebox.haxe") version "0.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.shoebox:gradle-haxe:0.3.0")
}
}
apply(plugin = "org.shoebox.haxe")
Using the plugins DSL:
plugins {
id "org.shoebox.haxe" version "0.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.shoebox:gradle-haxe:0.3.0"
}
}
apply plugin: "org.shoebox.haxe"