Comparable<Task>
, ContentFilterable
, CopyProcessingSpec
, CopySourceSpec
, CopySpec
, org.gradle.api.internal.DynamicObjectAware
, org.gradle.api.internal.file.copy.CopySpecSource
, org.gradle.api.internal.IConventionAware
, org.gradle.api.internal.TaskInternal
, ExtensionAware
, Task
, PatternFilterable
, org.gradle.util.Configurable<Task>
public class War extends Jar
Task.Namer
Modifier and Type | Field | Description |
---|---|---|
static String |
WAR_EXTENSION |
DEFAULT_EXTENSION
ZIP_EXTENSION
TASK_ACTION, TASK_CONSTRUCTOR_ARGS, TASK_DEPENDS_ON, TASK_DESCRIPTION, TASK_GROUP, TASK_NAME, TASK_OVERWRITE, TASK_TYPE
Constructor | Description |
---|---|
War() |
Modifier and Type | Method | Description |
---|---|---|
void |
classpath(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() |
|
File |
getWebXml() |
Returns the
web.xml file to include in the WAR archive. |
void |
setClasspath(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(File webXml) |
Sets the
web.xml file to include in the WAR archive. |
CopySpec |
webInf(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. |
getManifest, getManifestContentCharset, getMetadataCharset, getMetaInf, manifest, metaInf, metaInf, setManifest, setManifestContentCharset, setMetadataCharset
createCopyAction, getCompressor, getEntryCompression, isZip64, setEntryCompression, setZip64
createCopyActionExecuter, getAppendix, getArchiveAppendix, getArchiveBaseName, getArchiveClassifier, getArchiveExtension, getArchiveFile, getArchiveFileName, getArchiveName, getArchivePath, getArchiveVersion, getBaseName, getClassifier, getDestinationDir, getDestinationDirectory, 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
conventionMapping, conventionMapping, getConventionMapping
newInputDirectory, newInputFile, newOutputDirectory, newOutputFile
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
public static final String WAR_EXTENSION
public CopySpec webInf(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(Object classpath)
classpath
- The classpath. Must not be null.public void classpath(Object... classpath)
classpath
- The files to add. These are evaluated as per Project.files(Object...)
@Nullable @Optional @PathSensitive(NONE) @InputFile public 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.