diff --git a/build.gradle b/build.gradle index 3488c236c0..2a89dcb10e 100644 --- a/build.gradle +++ b/build.gradle @@ -58,6 +58,7 @@ if(timestamp==null) { project.ext.timestamp = new Date().format('yyyyMMdd.HHmmss') // println 'timestamp: '+project.ext.timestamp } +println 'build timestamp: '+project.ext.timestamp System.setOut(new PrintStream(new OutputStream() { private ByteArrayOutputStream buffer = new ByteArrayOutputStream(); @@ -220,6 +221,7 @@ task createVersionInfo(type: Copy) { include 'jadexversion.properties' expand(SRCDIST_JADEXVERSION: version.toString(), SRCDIST_PATCH_LEVEL: version.patch ?: '', SRCDIST_TIMESTAMP: project.ext.timestamp) } + println 'createVersionInfo: ' + project.buildDir.getCanonicalPath()+" "+version.toString()+" "+version.patch+" "+project.ext.timestamp; } createVersionInfo.mustRunAfter clean