Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lazily instantiate tasks, remove Closure refs and unblock configuration cache for consumers #69

Draft
wants to merge 15 commits into
base: main
Choose a base branch
from
Draft
Prev Previous commit
Next Next commit
Use typesafe TestLogEvent enum refs
DPUkyle committed Oct 10, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 62c0e8d375dbc6ef77ce6a903330fd194aa756b6
6 changes: 4 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import org.gosulang.gradle.build.VersionWriterTask
import org.gradle.api.tasks.testing.logging.TestLogEvent

import java.nio.charset.StandardCharsets

plugins {
@@ -92,7 +94,7 @@ dependencies {
test {
useJUnitPlatform()
testLogging {
events 'passed', 'failed', 'skipped'
events TestLogEvent.PASSED, TestLogEvent.FAILED, TestLogEvent.SKIPPED
}
environment('JAVA_TOOL_OPTIONS', '-Duser.language=en')
}
@@ -170,4 +172,4 @@ publishing {
}
}
}
}
}