- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.codehaus.plexus.archiver.war.WarArchiver
类的一些代码示例,展示了WarArchiver
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WarArchiver
类的具体详情如下:
包路径:org.codehaus.plexus.archiver.war.WarArchiver
类名称:WarArchiver
[英]An extension of <jar> to create a WAR archive. Contains special treatment for files that should end up in the WEB-INF/lib
, WEB-INF/classes
or WEB-INF
directories of the Web Application Archive.
(The War task is a shortcut for specifying the particular layout of a WAR file. The same thing can be accomplished by using the prefix and fullpath attributes of zipfilesets in a Zip or Jar task.)
The extended zipfileset element from the zip task (with attributes prefix, fullpath, and src) is available in the War task.
[中]<jar>的扩展,用于创建战争档案。包含对应该在Web应用程序归档的WEB-INF/lib
、WEB-INF/classes
或WEB-INF
目录中结束的文件的特殊处理。
(War任务是指定War文件特定布局的快捷方式。在Zip或Jar任务中使用ZipFileSet的前缀和完整路径属性也可以实现同样的功能。)
zip任务中的扩展zipfileset元素(具有前缀、完整路径和src属性)在War任务中可用。
代码示例来源:origin: org.codehaus.plexus/plexus-archiver
/**
* files to add under WEB-INF;
*/
public void addWebinf( File directoryName, String[] includes, String[] excludes )
throws ArchiverException
{
addDirectory( directoryName, "WEB-INF/", includes, excludes );
}
代码示例来源:origin: org.codehaus.plexus/plexus-archiver
/**
* set the deployment descriptor to use (WEB-INF/web.xml);
* required unless <tt>update=true</tt>
*/
public void setWebxml( File descr )
throws ArchiverException
{
deploymentDescriptor = descr;
if ( !deploymentDescriptor.exists() )
{
throw new ArchiverException( "Deployment descriptor: " + deploymentDescriptor + " does not exist." );
}
addFile( descr, "WEB-INF" + File.separatorChar + "web.xml" );
}
代码示例来源:origin: codehaus-cargo/cargo
WarArchiver warArchiver = new WarArchiver();
warArchiver.addDirectory(assembleDir);
warArchiver.setIgnoreWebxml(false);
代码示例来源:origin: org.apache.maven.plugins/maven-war-plugin
warArchiver.addDirectory( getWebappDirectory(), getPackagingIncludes(), getPackagingExcludes() );
warArchiver.setWebxml( webXmlFile );
warArchiver.setRecompressAddedZips( isRecompressZippedFiles() );
warArchiver.setIncludeEmptyDirs( isIncludeEmptyDirectories() );
warArchiver.setExpectWebXml( false );
代码示例来源:origin: org.apache.maven.plugin-testing/maven-plugin-testing-harness
war.setIgnoreWebxml( false );
代码示例来源:origin: tbroyer/gwt-maven-plugin
@Override
public void execute() throws MojoExecutionException, MojoFailureException {
warArchiver.setExpectWebXml(false);
File warFile = new File(outputDirectory, warName + ".war");
MavenArchiver archiver = new MavenArchiver();
archiver.setArchiver(warArchiver);
archiver.setOutputFile(warFile);
archive.setForced(forceCreation);
try {
File prepackagedApp = new File(outputDirectory, warName);
if (prepackagedApp.exists()) {
warArchiver.addDirectory(prepackagedApp);
}
archiver.createArchive(session, project, archive);
} catch (Exception e) {
throw new MojoExecutionException("Error packaging GWT application", e);
}
project.getArtifact().setFile(warFile);
}
}
代码示例来源:origin: org.codehaus.plexus/plexus-archiver
/**
* override of parent; validates configuration
* before initializing the output stream.
*
* @param zOut
*/
@Override
protected void initZipOutputStream( ConcurrentJarCreator zOut )
throws ArchiverException, IOException
{
// If no webxml file is specified, it's an error.
if ( expectWebXml && deploymentDescriptor == null && !isInUpdateMode() )
{
throw new ArchiverException(
"webxml attribute is required (or pre-existing WEB-INF/web.xml if executing in update mode)" );
}
super.initZipOutputStream( zOut );
}
代码示例来源:origin: org.codehaus.plexus/plexus-archiver
deploymentDescriptor ) ) ) )
getLogger().warn( "Warning: selected " + archiveType
+ " files include a WEB-INF/web.xml which will be ignored "
+ "\n(webxml attribute is missing from "
代码示例来源:origin: org.apache.maven.plugins/maven-assembly-plugin
protected Archiver createWarArchiver()
throws NoSuchArchiverException
{
final WarArchiver warArchiver = (WarArchiver) archiverManager.getArchiver( "war" );
warArchiver.setIgnoreWebxml( false ); // See MNG-1274
return warArchiver;
}
代码示例来源:origin: org.codehaus.plexus/plexus-archiver
/**
* add files under WEB-INF/lib/
*/
public void addLibs( File directoryName, String[] includes, String[] excludes )
throws ArchiverException
{
addDirectory( directoryName, "WEB-INF/lib/", includes, excludes );
}
代码示例来源:origin: com.simpligility.org.apache.maven.plugin-testing/maven-plugin-testing-harness
war.setIgnoreWebxml( false );
代码示例来源:origin: org.codehaus.plexus/plexus-archiver
/**
* add files under WEB-INF/classes
*/
public void addClasses( File directoryName, String[] includes, String[] excludes )
throws ArchiverException
{
addDirectory( directoryName, "WEB-INF/classes/", includes, excludes );
}
代码示例来源:origin: org.codehaus.plexus/plexus-archiver
/**
* add a file under WEB-INF/lib/
*/
public void addLib( File fileName )
throws ArchiverException
{
addDirectory( fileName.getParentFile(), "WEB-INF/lib/",
new String[]
{
fileName.getName()
}, null );
}
代码示例来源:origin: org.codehaus.plexus/plexus-archiver
/**
* add a file under WEB-INF/lib/
*/
public void addClass( File fileName )
throws ArchiverException
{
addDirectory( fileName.getParentFile(), "WEB-INF/classes/",
new String[]
{
fileName.getName()
}, null );
}
eclipse 中这个被上帝遗忘的错误不会消失。我已经尝试了这里和其他地方提到的所有东西来摆脱它,但它不会消失,现在我不能在 eclipse 中使用 Web 服务实用程序,因为它提示这个“问题”,这显
本文整理了Java中org.codehaus.plexus.archiver.war.WarArchiver类的一些代码示例,展示了WarArchiver类的具体用法。这些代码示例主要来源于Githu
本文整理了Java中org.codehaus.plexus.archiver.zip.ZipArchiver类的一些代码示例,展示了ZipArchiver类的具体用法。这些代码示例主要来源于Githu
关闭。这个问题需要更多 focused .它目前不接受答案。 想改进这个问题?更新问题,使其仅关注一个问题 editing this post . 8年前关闭。 Improve this questi
我目前正在尝试让 PlexusContainer 给我一个初始化的 Maven - 在 maven 或 eclipse 执行上下文之外的实例。 为此,我有以下代码(简化): PlexusContain
我知道我是 Java 新手,但我需要在启动板上构建几个 Ubuntu 软件包。我修复了很多依赖问题,但现在遇到以下错误: [INFO] --------------------------------
我需要用我自己的实现替换一些 Maven 默认功能,我正在寻找一种干净的方法来做到这一点。 我已延长 org.apache.maven.repository.internal.DefaultVersi
我创建了一个 Plexus 组件来容纳我想要创建的几个 Mojo 的通用逻辑。我已经能够从 Mojo(和测试用例)传递 localRepository 和项目等信息。 我想知道是否有一种方法可以从组件
当我尝试在我的项目上运行 mvn sonar:sonar 命令时,我经常遇到以下错误: [ERROR] Failed to execute goal org.sonarsource.scanner.m
本文整理了Java中org.codehaus.plexus.archiver.war.WarArchiver.setExpectWebXml()方法的一些代码示例,展示了WarArchiver.set
本文整理了Java中org.codehaus.plexus.archiver.war.WarArchiver.setIgnoreWebxml()方法的一些代码示例,展示了WarArchiver.set
本文整理了Java中org.codehaus.plexus.archiver.war.WarArchiver.addDirectory()方法的一些代码示例,展示了WarArchiver.addDir
本文整理了Java中org.codehaus.plexus.archiver.zip.ZipArchiver.()方法的一些代码示例,展示了ZipArchiver.()的具体用法。这些代码示例主要来源
本文整理了Java中org.codehaus.plexus.archiver.zip.ZipArchiver.addFileSet()方法的一些代码示例,展示了ZipArchiver.addFileS
本文整理了Java中org.codehaus.plexus.archiver.zip.ZipArchiver.addDirectory()方法的一些代码示例,展示了ZipArchiver.addDir
本文整理了Java中org.codehaus.plexus.archiver.zip.ZipArchiver.addFile()方法的一些代码示例,展示了ZipArchiver.addFile()的具
本文整理了Java中org.codehaus.plexus.archiver.zip.ZipArchiver.createArchive()方法的一些代码示例,展示了ZipArchiver.creat
本文整理了Java中org.codehaus.plexus.archiver.zip.ZipArchiver.setDestFile()方法的一些代码示例,展示了ZipArchiver.setDest
本文整理了Java中org.codehaus.plexus.archiver.zip.ZipUnArchiver.enableLogging()方法的一些代码示例,展示了ZipUnArchiver.e
本文整理了Java中org.codehaus.plexus.archiver.zip.ZipUnArchiver.setDestDirectory()方法的一些代码示例,展示了ZipUnArchive
我是一名优秀的程序员,十分优秀!