Gradle cache friendly Junit test fix. (#4044)

This commit is contained in:
josecoll 2018-10-08 13:56:02 +01:00 committed by GitHub
parent d9ea19855f
commit d987f18871
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,6 +22,9 @@ test {
// Running this class is the whole point, so include it explicitly.
includeTestsMatching "net.corda.deterministic.data.GenerateData"
}
// force execution of these tests to generate artifacts required by other module (eg. VerifyTransactionTest)
// note: required by Gradle Build Cache.
outputs.upToDateWhen { false }
}
assemble.finalizedBy test