ContentFilterable
, CopyProcessingSpec
, CopySourceSpec
, CopySpec
, PatternFilterable
public class War extends Jar
Task.Namer
Modifier and Type | Field | Description |
---|---|---|
static java.lang.String |
WAR_EXTENSION |
DEFAULT_EXTENSION
TASK_ACTION, TASK_CONSTRUCTOR_ARGS, TASK_DEPENDS_ON, TASK_DESCRIPTION, TASK_GROUP, TASK_NAME, TASK_OVERWRITE, TASK_TYPE
ZIP_EXTENSION
Constructor | Description |
---|---|
War() |
Modifier and Type | Method | Description |
---|---|---|
void |
classpath(java.lang.Object... classpath) |
Adds files to the classpath to include in the WAR archive.
|
FileCollection |
getClasspath() |
Returns the classpath to include in the WAR archive.
|
CopySpec |
getWebInf() |
|
java.io.File |
getWebXml() |
Returns the
web.xml file to include in the WAR archive. |
void |
setClasspath(java.lang.Object classpath) |
Sets the classpath to include in the WAR archive.
|
void |
setClasspath(FileCollection classpath) |
Sets the classpath to include in the WAR archive.
|
void |
setWebXml(java.io.File webXml) |
Sets the
web.xml file to include in the WAR archive. |
CopySpec |
webInf(groovy.lang.Closure configureClosure) |
Adds some content to the
WEB-INF directory for this WAR archive. |
CopySpec |
webInf(Action<? super CopySpec> configureAction) |
Adds some content to the
WEB-INF directory for this WAR archive. |
createCopyActionExecuter, getAppendix, getArchiveName, getArchivePath, getBaseName, getClassifier, getDestinationDir, getExtension, getVersion, into, into, into, isPreserveFileTimestamps, isReproducibleFileOrder, setAppendix, setArchiveName, setBaseName, setClassifier, setDestinationDir, setExtension, setPreserveFileTimestamps, setReproducibleFileOrder, setVersion
copy, createRootSpec, eachFile, eachFile, exclude, exclude, exclude, exclude, expand, filesMatching, filesMatching, filesNotMatching, filesNotMatching, filter, filter, filter, filter, from, from, from, getDirectoryFileTreeFactory, getDirMode, getDuplicatesStrategy, getExcludes, getFileLookup, getFileMode, getFileResolver, getFileSystem, getFilteringCharset, getIncludeEmptyDirs, getIncludes, getInstantiator, getMainSpec, getRootSpec, getSource, include, include, include, include, isCaseSensitive, rename, rename, rename, rename, setCaseSensitive, setDirMode, setDuplicatesStrategy, setExcludes, setFileMode, setFilteringCharset, setIncludeEmptyDirs, setIncludes, with
appendParallelSafeAction, compareTo, configure, dependsOn, doFirst, doFirst, doFirst, doLast, doLast, doLast, finalizedBy, getActions, getAnt, getAsDynamicObject, getConvention, getDependsOn, getDescription, getDestroyables, getDidWork, getEnabled, getExtensions, getFinalizedBy, getGroup, getIdentityPath, getImpliesSubProjects, getInputs, getLocalState, getLogger, getLogging, getMustRunAfter, getName, getOnlyIf, getOutputs, getPath, getProject, getServices, getShouldRunAfter, getStandardOutputCapture, getState, getTaskActions, getTaskDependencies, getTaskIdentity, getTemporaryDir, getTemporaryDirFactory, getTimeout, hasProperty, hasTaskActions, injectIntoNewInstance, isEnabled, isHasCustomActions, mustRunAfter, onlyIf, onlyIf, prependParallelSafeAction, property, replaceLogger, setActions, setDependsOn, setDescription, setDidWork, setEnabled, setFinalizedBy, setGroup, setImpliesSubProjects, setMustRunAfter, setOnlyIf, setOnlyIf, setProperty, setShouldRunAfter, shouldRunAfter, toString
conventionMapping, conventionMapping, getConventionMapping
newInputDirectory, newInputFile, newOutputDirectory, newOutputFile
getManifest, getManifestContentCharset, getMetadataCharset, getMetaInf, manifest, metaInf, metaInf, setManifest, setManifestContentCharset, setMetadataCharset
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
createCopyAction, getCompressor, getEntryCompression, isZip64, setEntryCompression, setZip64
public static final java.lang.String WAR_EXTENSION
public CopySpec webInf(groovy.lang.Closure configureClosure)
WEB-INF
directory for this WAR archive.
The given closure is executed to configure a CopySpec
. The CopySpec
is passed to the closure as its delegate.
configureClosure
- The closure to executeCopySpec
.public CopySpec webInf(Action<? super CopySpec> configureAction)
WEB-INF
directory for this WAR archive.
The given action is executed to configure a CopySpec
.
configureAction
- The action to executeCopySpec
.@Nullable @Optional @Classpath public FileCollection getClasspath()
WEB-INF/lib
directory. Any directories in this classpath are included in
the WEB-INF/classes
directory.public void setClasspath(FileCollection classpath)
classpath
- The classpath. Must not be null.public void setClasspath(java.lang.Object classpath)
classpath
- The classpath. Must not be null.public void classpath(java.lang.Object... classpath)
classpath
- The files to add. These are evaluated as per Project.files(Object...)
@Nullable @Optional @PathSensitive(NONE) @InputFile public java.io.File getWebXml()
web.xml
file to include in the WAR archive. When null
, no web.xml
file is included in the WAR.web.xml
file.public void setWebXml(@Nullable java.io.File webXml)
web.xml
file to include in the WAR archive. When null
, no web.xml
file is included in the WAR.webXml
- The web.xml
file. Maybe null.