Browse Source

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
pull/599/head
Axel Howind 2 months ago
parent
commit
386ddb8e6b
2 changed files with 4 additions and 4 deletions
  1. 4
    0
      build.gradle
  2. 0
    4
      poi/build.gradle

+ 4
- 0
build.gradle 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 {

+ 0
- 4
poi/build.gradle 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'

Loading…
Cancel
Save