From 13271a686842d35919ff4e53cc14f1b397ef40bc Mon Sep 17 00:00:00 2001 From: Przemyslaw BIELICKI Date: Mon, 17 Nov 2014 16:41:13 +0100 Subject: [PATCH] Fixes build error: [ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.16:test (default-test) on project geekseek-domain-core: Execution default-test of goal org.apache.maven.plugins:maven-surefire-plugin:2.16:test failed: Illegal Unicode escape sequence near index 4 [ERROR] .*\unit\.*TestCase.* --- code/application/pom.xml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/code/application/pom.xml b/code/application/pom.xml index 13cd3a5..2d43d4b 100644 --- a/code/application/pom.xml +++ b/code/application/pom.xml @@ -44,8 +44,8 @@ 1.0.0.Alpha6 1.2.1.Final 2.0.0.Final - 1.0.0.Beta1-SNAPSHOT - 1.0.0.Final-SNAPSHOT + 1.0.0.Alpha7 + 1.0.0.Final 1.0.0.Alpha1 2.3.0 8.0.0.Final @@ -430,7 +430,7 @@ maven-surefire-plugin - %regex[.*/unit/.*TestCase.*] + **/unit/*TestCase.* @@ -450,8 +450,8 @@ - %regex[.*/unit/.*TestCase.*] - %regex[.*/integration/.*TestCase.*] + **/unit/*TestCase.* + **/integration/*TestCase.* @@ -471,9 +471,9 @@ - %regex[.*/unit/.*TestCase.*] - %regex[.*/integration/.*TestCase.*] - %regex[.*/functional/.*TestCase.*] + **/unit/*TestCase.* + **/integration/*TestCase.* + **/functional/*TestCase.*