mirror of https://github.com/apache/maven.git
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:
parent
409c473e0c
commit
72ac9c77e5
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue