Commit 08137cf4 authored by Dave Syer's avatar Dave Syer

Pin problematic dependency in local repo cache

parent 672aa71e
...@@ -33,6 +33,12 @@ ...@@ -33,6 +33,12 @@
<artifactId>groovy-templates</artifactId> <artifactId>groovy-templates</artifactId>
<optional>true</optional> <optional>true</optional>
</dependency> </dependency>
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.16.1-GA</version>
<scope>test</scope>
</dependency>
</dependencies> </dependencies>
<build> <build>
<resources> <resources>
......
...@@ -26,7 +26,6 @@ import java.util.concurrent.TimeUnit; ...@@ -26,7 +26,6 @@ import java.util.concurrent.TimeUnit;
import org.apache.ivy.util.FileUtil; import org.apache.ivy.util.FileUtil;
import org.junit.After; import org.junit.After;
import org.junit.Assume;
import org.junit.Before; import org.junit.Before;
import org.junit.BeforeClass; import org.junit.BeforeClass;
import org.junit.Test; import org.junit.Test;
...@@ -140,8 +139,8 @@ public class SampleIntegrationTests { ...@@ -140,8 +139,8 @@ public class SampleIntegrationTests {
@Test @Test
public void uiSample() throws Exception { public void uiSample() throws Exception {
Assume.assumeTrue("Not running in CI", // Assume.assumeTrue("Not running in CI",
System.getProperty("bamboo.buildPlanName") == null); // System.getProperty("bamboo.buildPlanName") == null);
start("samples/ui.groovy", "--classpath=.:src/test/resources"); start("samples/ui.groovy", "--classpath=.:src/test/resources");
String result = FileUtil.readEntirely(new URL("http://localhost:8080") String result = FileUtil.readEntirely(new URL("http://localhost:8080")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment