From b6831304edf61e29ac0b01a8c0558878d925c9f9 Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Thu, 7 May 2020 16:08:27 +0200 Subject: [PATCH] chore(gradle) The JAR task is never up-to-date. --- build.gradle | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index f967d61..e42f84f 100644 --- a/build.gradle +++ b/build.gradle @@ -135,9 +135,10 @@ tasks.withType(Test) { // shared object file systemProperty "java.library.path", "target/current/" - // Don"t capture the standard output. testLogging { outputs.upToDateWhen { false } + + // Don"t capture the standard output. showStandardStreams = true } } @@ -150,6 +151,8 @@ jar.doLast() { println("::set-output name=name::" + jar_name) } +jar.outputs.upToDateWhen { false } + // We build the integration before running any test compileTestJava.dependsOn buildRust processResources.dependsOn copyAllArtifacts