diff options
author | Dominik Stadler <centic@apache.org> | 2016-06-11 17:03:46 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2016-06-11 17:03:46 +0000 |
commit | 48b7a76300caf48837194420ea5c550d7a5a9414 (patch) | |
tree | 795a090128da6b685e0e164ec81a879559b2e1de /sonar | |
parent | 370a0563e8ae0f49124511e56d1cde7504286e69 (diff) | |
download | poi-48b7a76300caf48837194420ea5c550d7a5a9414.tar.gz poi-48b7a76300caf48837194420ea5c550d7a5a9414.zip |
Set the correct locale for tests in the Sonar-Maven files to not fail on CI machines that have a different locale set
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1747914 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sonar')
-rw-r--r-- | sonar/main/pom.xml | 2 | ||||
-rw-r--r-- | sonar/ooxml/pom.xml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sonar/main/pom.xml b/sonar/main/pom.xml index 35180aa55c..c2d81ecb31 100644 --- a/sonar/main/pom.xml +++ b/sonar/main/pom.xml @@ -103,7 +103,7 @@ <artifactId>maven-surefire-plugin</artifactId> <version>${maven.plugin.surefire.version}</version> <configuration> - <argLine>-Xmx1024m -XX:MaxPermSize=256m -XX:-OmitStackTraceInFastThrow</argLine> + <argLine>-Duser.language=en -Duser.country=US -Xmx1024m -XX:MaxPermSize=256m -XX:-OmitStackTraceInFastThrow</argLine> </configuration> </plugin> </plugins> diff --git a/sonar/ooxml/pom.xml b/sonar/ooxml/pom.xml index 9d1e40ce6a..dd5551884f 100644 --- a/sonar/ooxml/pom.xml +++ b/sonar/ooxml/pom.xml @@ -93,7 +93,7 @@ <artifactId>maven-surefire-plugin</artifactId> <version>${maven.plugin.surefire.version}</version> <configuration> - <argLine>-Xmx1024m -XX:MaxPermSize=256m -XX:-OmitStackTraceInFastThrow</argLine> + <argLine>-Duser.language=en -Duser.country=US -Xmx1024m -XX:MaxPermSize=256m -XX:-OmitStackTraceInFastThrow</argLine> </configuration> </plugin> </plugins> |