Search Gradle plugins

Version 0.3.0

0.3.0

Created 27 January 2017.

Haxe compiler wrapper in Gradle

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"

Learn how to apply plugins to subprojects