gradle runJar task?
Posted
by Misha Koshelev
on Stack Overflow
See other posts from Stack Overflow
or by Misha Koshelev
Published on 2010-06-17T16:24:19Z
Indexed on
2010/06/17
18:33 UTC
Read the original article
Hit count: 386
Dear All:
I am trying to make a task to run my Jar file in gradle.
I have come up with the following:
task runJar(dependsOn:[jar]){
ant.java(jar:,fork:true)
}
However, I am unable to find the path to the jar file. Any help much appreciated. Thank you!
Misha
EDIT: OK this is rather odd. This task runs before compile, etc.???
EDIT: Fixed. The key is in a doLast { } notation, or, in shorthand
task runJar(dependsOn:"jar")<<{
ant.java(jar:"${libsDir}${File.separator}${archivesBaseName}.jar",fork:true)
}
Misha
© Stack Overflow or respective owner