You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by cd...@apache.org on 2016/03/19 17:53:38 UTC

git commit: [flex-falcon] [refs/heads/develop] - Fixed a problem causing the test to fail on windows machines when running the tests with maven.

Repository: flex-falcon
Updated Branches:
  refs/heads/develop da24e6038 -> 63f75cf46


Fixed a problem causing the test to fail on windows machines when running the tests with maven.


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/63f75cf4
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/63f75cf4
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/63f75cf4

Branch: refs/heads/develop
Commit: 63f75cf46325835dc12d5f8a8c30401e87d52391
Parents: da24e60
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Sat Mar 19 17:53:32 2016 +0100
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Sat Mar 19 17:53:32 2016 +0100

----------------------------------------------------------------------
 compiler.tests/src/org/apache/flex/utils/MavenTestAdapter.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/63f75cf4/compiler.tests/src/org/apache/flex/utils/MavenTestAdapter.java
----------------------------------------------------------------------
diff --git a/compiler.tests/src/org/apache/flex/utils/MavenTestAdapter.java b/compiler.tests/src/org/apache/flex/utils/MavenTestAdapter.java
index ae45eda..9e87e3b 100644
--- a/compiler.tests/src/org/apache/flex/utils/MavenTestAdapter.java
+++ b/compiler.tests/src/org/apache/flex/utils/MavenTestAdapter.java
@@ -28,6 +28,7 @@ import org.apache.commons.io.FilenameUtils;
 import java.io.*;
 import java.util.ArrayList;
 import java.util.List;
+import java.util.regex.Matcher;
 
 /**
  * Created by christoferdutz on 23.02.16.
@@ -131,7 +132,7 @@ public class MavenTestAdapter implements ITestAdapter {
 
     private File getDependency(String groupId, String artifactId, String version, String type, String classifier) {
         String dependencyPath = System.getProperty("mavenLocalRepoDir") + File.separator +
-                groupId.replaceAll("\\.", File.separator) + File.separator + artifactId + File.separator + version +
+                groupId.replaceAll("\\.", Matcher.quoteReplacement(File.separator)) + File.separator + artifactId + File.separator + version +
                 File.separator + artifactId + "-" + version + ((classifier != null) ? "-" + classifier : "") + "." +
                 type;
         File dependency = new File(dependencyPath);