org.fx.gradlefx
Owner: Gareth Matthews
GradleFx is a Gradle plugin for building Flex and Actionscript applications
Sources: https://github.com/GradleFx/GradleFx
Version 1.4.0-SNAPSHOT (latest)
1.4.0-SNAPSHOT
Created 25 October 2016.
GradleFx is a Gradle plugin for building Flex and Actionscript applications
Using the plugins DSL:
plugins {
id("org.fx.gradlefx") version "1.4.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.fx.gradlefx:gradlefx:1.4.0-SNAPSHOT")
}
}
apply(plugin = "org.fx.gradlefx")
Using the plugins DSL:
plugins {
id "org.fx.gradlefx" version "1.4.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.fx.gradlefx:gradlefx:1.4.0-SNAPSHOT"
}
}
apply plugin: "org.fx.gradlefx"