From d086d8dcfa4f2bf1407cc2dc6304c489ff7156f9 Mon Sep 17 00:00:00 2001 From: antelder Date: Wed, 3 Mar 2010 22:17:07 +0000 Subject: Temp fix to get the tests running with mixed zip/jar contribution types git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@918736 13f79535-47bb-0310-9956-ffa450edef68 --- .../test/java/org/apache/tuscany/sca/otest/TuscanyRuntimeBridge.java | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'sca-java-2.x/trunk/compliance-tests/java-caa/src') diff --git a/sca-java-2.x/trunk/compliance-tests/java-caa/src/test/java/org/apache/tuscany/sca/otest/TuscanyRuntimeBridge.java b/sca-java-2.x/trunk/compliance-tests/java-caa/src/test/java/org/apache/tuscany/sca/otest/TuscanyRuntimeBridge.java index 54b4faec73..8e79d1f9af 100644 --- a/sca-java-2.x/trunk/compliance-tests/java-caa/src/test/java/org/apache/tuscany/sca/otest/TuscanyRuntimeBridge.java +++ b/sca-java-2.x/trunk/compliance-tests/java-caa/src/test/java/org/apache/tuscany/sca/otest/TuscanyRuntimeBridge.java @@ -22,6 +22,7 @@ import static org.junit.Assert.assertEquals; import static org.junit.Assert.fail; import java.io.BufferedWriter; +import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.io.InputStream; @@ -121,6 +122,9 @@ public class TuscanyRuntimeBridge implements RuntimeBridge { if (aLocation.endsWith("_POJO.zip") && !aLocation.endsWith("ASM_8005_Java-1.0.zip")) { aLocation = aLocation.substring(0, aLocation.length()-3) + "jar"; } + if (!(new File(aLocation)).exists()) { + aLocation = aLocation.replace(".zip", ".jar"); + } locations[i] = aLocation; } // end for } else { -- cgit v1.2.3