created a createZipDistribution task on the gradle build
This commit is contained in:
parent
9c8f1b8b75
commit
7956e513e2
@ -57,6 +57,13 @@ task libDist(dependsOn: subprojects.build) << {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
task createZipDistribution(type:Zip,dependsOn:"dist", description:"Package the nightly zip distribution"){
|
||||||
|
archiveName "jME"+jmeVersion+"_"+jmeVersionTag+"_"+new Date().format("yyyy-MM-dd")+".zip"
|
||||||
|
from {"./dist"}
|
||||||
|
into(".")
|
||||||
|
println archiveName
|
||||||
|
}
|
||||||
|
|
||||||
task copyLibs(type: Copy){
|
task copyLibs(type: Copy){
|
||||||
// description 'Copies the engine dependencies to build/libDist'
|
// description 'Copies the engine dependencies to build/libDist'
|
||||||
from {
|
from {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user