move setting of locale for tests to top level build.gradle

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1915910 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Axel Howind 2024-02-20 22:48:53 +00:00
parent 1bb5f644f1
commit 386ddb8e6b
2 changed files with 4 additions and 4 deletions

View File

@ -334,6 +334,10 @@ subprojects {
}
test {
// use US locale for tests
systemProperty "user.language", "en"
systemProperty "user.country", "US"
// make XML test-results available for Jenkins CI
useJUnitPlatform()
reports {

View File

@ -169,10 +169,6 @@ artifacts {
}
test {
// use US locale for tests
systemProperty "user.language", "en"
systemProperty "user.country", "US"
dependsOn { testJar }
systemProperties['junit.jupiter.execution.parallel.enabled'] = 'true'