This is an automated email from the ASF dual-hosted git repository. joshtynjala pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/royale-compiler.git
commit 70584077b6ff2d6202f2144e5d1b37609ee6e067 Author: Josh Tynjala <[email protected]> AuthorDate: Tue Oct 18 10:02:35 2022 -0700 Maven: force locale for junit tests because they compare en_US error strings (closes #221) --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 68f6a38cc..dd438181a 100644 --- a/pom.xml +++ b/pom.xml @@ -282,7 +282,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <!-- the @-sign implies late-evaluation of the property --> - <argLine>@{surefireArgLine}</argLine> + <argLine>@{surefireArgLine} -Duser.language=en -Duser.country=US</argLine> <systemPropertyVariables> <buildType>Maven</buildType> <flexVersion>${flex.version}</flexVersion> @@ -316,7 +316,7 @@ </executions> <configuration> <!-- the @-sign implies late-evaluation of the property --> - <argLine>@{failsafeArgLine}</argLine> + <argLine>@{failsafeArgLine} -Duser.language=en -Duser.country=US</argLine> <systemPropertyVariables> <buildType>Maven</buildType> <flexVersion>${flex.version}</flexVersion>
