本文整理汇总了Java中org.codehaus.plexus.archiver.zip.ZipArchiver.addFileSet方法的典型用法代码示例。如果您正苦于以下问题:Java ZipArchiver.addFileSet方法的具体用法?Java ZipArchiver.addFileSet怎么用?Java ZipArchiver.addFileSet使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.codehaus.plexus.archiver.zip.ZipArchiver
的用法示例。
在下文中一共展示了ZipArchiver.addFileSet方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createIvyArchive
import org.codehaus.plexus.archiver.zip.ZipArchiver; //导入方法依赖的package包/类
private void createIvyArchive(File sourceDir, File targetIar) throws MojoExecutionException
{
ZipArchiver archiver = new ZipArchiver();
archiver.setDestFile(targetIar);
archiver.addFileSet(getDefaultFileset(sourceDir));
FileSetConverter fsConverter = new FileSetConverter(project.getBasedir());
for(org.codehaus.plexus.archiver.FileSet fs : fsConverter.toPlexusFileSets(iarFileSets))
{
archiver.addFileSet(fs);
}
try
{
archiver.createArchive();
}
catch (ArchiverException | IOException ex)
{
throw new MojoExecutionException("Failed to create IAR: " + targetIar.getAbsolutePath(), ex);
}
}
示例2: attachGeneratedIncludeFilesAsIncZip
import org.codehaus.plexus.archiver.zip.ZipArchiver; //导入方法依赖的package包/类
private void attachGeneratedIncludeFilesAsIncZip()
throws MojoExecutionException
{
try
{
ZipArchiver archiver = new ZipArchiver();
DefaultFileSet fileSet = new DefaultFileSet();
fileSet.setUsingDefaultExcludes( true );
fileSet.setDirectory( javahOutputDirectory );
archiver.addFileSet( fileSet );
archiver.setDestFile( this.incZipFile );
archiver.createArchive();
if ( StringUtils.isBlank( this.classifier ) )
{
projectHelper.attachArtifact( this.project, INCZIP_TYPE, null, this.incZipFile );
}
else
{
projectHelper.attachArtifact( this.project, INCZIP_TYPE, this.classifier, this.incZipFile );
}
}
catch ( Exception e )
{
throw new MojoExecutionException( "Unable to archive/deploy generated include files", e );
}
}
示例3: execute
import org.codehaus.plexus.archiver.zip.ZipArchiver; //导入方法依赖的package包/类
/**
*
* @throws MojoExecutionException if an unexpected problem occurs
* @throws MojoFailureException if an expected problem occurs
*/
public void execute()
throws MojoExecutionException, MojoFailureException
{
try
{
File nbmBuildDirFile = new File( outputDirectory, brandingToken );
ZipArchiver archiver = new ZipArchiver();
DefaultFileSet fs = new DefaultFileSet();
fs.setDirectory( outputDirectory );
fs.setIncludes( new String[] {
brandingToken + "/**",
} );
fs.setExcludes( new String[] {
brandingToken + "/bin/*",
} );
archiver.addFileSet( fs );
File bins = new File( nbmBuildDirFile, "bin" );
for ( File bin : bins.listFiles() )
{
archiver.addFile( bin, brandingToken + "/bin/" + bin.getName(), 0755 );
}
File zipFile = new File( outputDirectory, finalName + ".zip" );
//TODO - somehow check for last modified content to see if we shall be
//recreating the zip file.
archiver.setDestFile( zipFile );
archiver.setForced( false );
archiver.createArchive();
project.getArtifact().setFile( zipFile );
}
catch ( Exception ex )
{
throw new MojoExecutionException( "", ex );
}
}
示例4: execute
import org.codehaus.plexus.archiver.zip.ZipArchiver; //导入方法依赖的package包/类
public void execute()
throws MojoExecutionException
{
if ( skipIncludeDeployment )
{
return;
}
if ( this.sources.length != 0 )
{
try
{
ZipArchiver archiver = new ZipArchiver();
boolean zipIt = false;
for ( int i = 0; i < sources.length; ++i )
{
if ( sources[i].isDeployable() )
{
DefaultFileSet fileSet = new DefaultFileSet();
fileSet.setUsingDefaultExcludes( true );
fileSet.setDirectory( sources[i].getDirectory() );
fileSet.setIncludes( sources[i].getIncludes() );
fileSet.setExcludes( sources[i].getExcludes() );
archiver.addFileSet( fileSet );
zipIt = true;
}
}
if ( zipIt )
{
archiver.setDestFile( this.incZipFile );
archiver.createArchive();
projectHelper.attachArtifact( this.project, INCZIP_TYPE, null, this.incZipFile );
}
}
catch ( Exception e )
{
throw new MojoExecutionException( e.getMessage(), e );
}
}
}