cat < pom.xml 4.0.0 test test 1.0-SNAPSHOT junit junit 4.12 test org.apache.maven.plugins maven-surefire-plugin 2.18.1 EOF mkdir -p src/test/java cat < src/test/java/TestSleep.java import org.junit.Test; public class TestSleep { @Test public void test() throws Exception { System.out.println("Now sleeping"); Thread.sleep(50000000); } } EOF