-
-
Save crazy4groovy/6642186 to your computer and use it in GitHub Desktop.
Gradle build file for GroovyFX.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin:'groovy' | |
project.javafxHome = System.env['JAVAFX_HOME'] | |
repositories { mavenCentral() } | |
dependencies { | |
groovy 'org.codehaus.groovy:groovy-all:1.8.6' | |
compile 'org.codehaus.groovyfx:groovyfx:0.3.1' | |
compile files("${javafxHome}/rt/lib/jfxrt.jar") | |
} | |
task run(type: JavaExec) { | |
main = 'helloGroovyFX' | |
classpath sourceSets.main.runtimeClasspath | |
} | |
task makeDirs(description:'make all dirs for project setup') << { | |
def sources = [sourceSets.main, sourceSets.test] | |
sources*.allSource*.srcDirs.flatten().each { File srcDir -> | |
println "making $srcDir" | |
srcDir.mkdirs() | |
} | |
} | |
task wrap(type:Wrapper, description:"create a gradlew") { | |
gradleVersion = '1.7' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment