o fixing compile error from new snapshot deployment of plexus archiver

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@463231 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2006-10-12 12:30:41 +00:00
parent 409c473e0c
commit 72ac9c77e5
1 changed files with 5 additions and 0 deletions

View File

@ -25,6 +25,7 @@ import java.util.List;
import java.util.ArrayList;
import java.util.Iterator;
import java.io.File;
import java.io.IOException;
/**
@ -123,6 +124,10 @@ public class AntMojoWrapper
{
throw new MojoExecutionException( "Error extracting resources from your Ant-based plugin.", e );
}
catch( IOException e )
{
throw new MojoExecutionException( "Error extracting resources from your Ant-based plugin.", e );
}
}
private void addClasspathReferences()