From 9fa7f47e98c31b16c94abd5c65d4d7b8b7a1ae3b Mon Sep 17 00:00:00 2001 From: Jason van Zyl Date: Sat, 14 Oct 2006 03:27:59 +0000 Subject: [PATCH] o need a few utils git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@463890 13f79535-47bb-0310-9956-ffa450edef68 --- mavenexecute.pl | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/mavenexecute.pl b/mavenexecute.pl index 6c3dbf3e5a..21e8a344d9 100644 --- a/mavenexecute.pl +++ b/mavenexecute.pl @@ -89,9 +89,10 @@ EOF open( T, "> $testFile") or die; print $filename . "\n"; - print T "package org.apache.maven.it;\n"; - print T "import java.io.File;\n"; - print T "import junit.framework.*;\n"; + print T "package org.apache.maven.it;\n\n"; + print T "import java.io.*;\n"; + print T "import java.util.*;\n"; + print T "import junit.framework.*;\n\n"; print T "public class $itTestName extends TestCase /*extends AbstractMavenIntegrationTest*/ {\n"; print T "/** $comment{$filename} */\n"; print T "public void test$filename() throws Exception {\n";