| API Documentation: | EclipseWtpComponent |
|---|
Generates the org.eclipse.wst.common.component settings file for Eclipse WTP.
| Property | Description |
contextPath | The context path for the web application |
deployName | The deploy name to be used. |
inputFile | The input file to load the initial configuration from. Defaults to the output file. If the specified input file does not exist, this task uses some default initial configuration. |
minusConfigurations | The configurations whose files are to be excluded from dependent-module elements. |
outputFile | The output file to write the final configuration to. |
plusConfigurations | The configurations whose files are to be transformed into dependent-module elements. |
properties | Additional property elements. |
resources | Additional wb-resource elements. |
sourceDirs | The source directories to be transformed into wb-resource elements. |
variables | The variables to be used for replacing absolute path in dependent-module elements. |
String contextPath
The context path for the web application
- Default with
eclipseandwarplugins: project.war.baseName
File inputFile
The input file to load the initial configuration from. Defaults to the output file. If the specified input file does not exist, this task uses some default initial configuration.
Set<Configuration> minusConfigurations
Set<Configuration>The configurations whose files are to be excluded from dependent-module elements.
- Default with
eclipseandwarplugins: [project.configurations.providedRuntime]
File outputFile
The output file to write the final configuration to.
- Default with
eclipseandwarplugins: ${project.projectDir}/.settings/org.eclipse.wst.common.component
Set<Configuration> plusConfigurations
Set<Configuration>The configurations whose files are to be transformed into dependent-module elements.
- Default with
eclipseandwarplugins: [project.configurations.runtime]
List<WbResource> resources
List<WbResource>Additional wb-resource elements.
- Default with
eclipseandwarplugins: [deployPath: '/', sourcePath: project.webAppDirName]
The source directories to be transformed into wb-resource elements.
- Default with
eclipseandwarplugins: - source dirs from
project.sourceSets.main.allSource
| Method | Description |
beforeConfigured(closure) | Adds a closure to be called before the domain object is configured by this task. The domain object is passed as a parameter to the closure. |
beforeConfigured(action) | Adds an action to be called before the domain object is configured by this task. The domain object is passed as a parameter to the action. |
property(args) | Adds a property. |
resource(args) | Adds a wb-resource. |
variables(variables) | Adds variables to be used for replacing absolute path in dependent-module elements. |
whenConfigured(closure) | Adds a closure to be called after the domain object has been configured by this task. The domain object is passed as a parameter to the closure. |
whenConfigured(action) | Adds an action to be called after the domain object has been configured by this task. The domain object is passed as a parameter to the action. |
withXml(closure) | Adds a closure to be called when the XML document has been created. The XML is passed to the closure as a
parameter in form of a |
withXml(action) | Adds an action to be called when the XML document has been created. The XML is passed to the action as a
parameter in form of a |
void beforeConfigured(Closure closure)
Adds a closure to be called before the domain object is configured by this task. The domain object is passed as a parameter to the closure.
The closure is executed after the domain object has been loaded from the input file. Using this method allows you to change the domain object in some way before the task configures it.
void beforeConfigured(Action<? super T> action)
Action<? super T>Adds an action to be called before the domain object is configured by this task. The domain object is passed as a parameter to the action.
The action is executed after the domain object has been loaded from the input file. Using this method allows you to change the domain object in some way before the task configures it.
Adds variables to be used for replacing absolute path in dependent-module elements.
void whenConfigured(Closure closure)
Adds a closure to be called after the domain object has been configured by this task. The domain object is passed as a parameter to the closure.
The closure is executed just before the domain object is written to the output file. Using this method allows you to override the configuration applied by this task.
void whenConfigured(Action<? super T> action)
Action<? super T>Adds an action to be called after the domain object has been configured by this task. The domain object is passed as a parameter to the action.
The action is executed just before the domain object is written to the output file. Using this method allows you to override the configuration applied by this task.
void withXml(Closure closure)
Adds a closure to be called when the XML document has been created. The XML is passed to the closure as a
parameter in form of a XmlProvider. The closure can modify the XML before
it is written to the output file.
void withXml(Action<? super XmlProvider> action)
Action<? super XmlProvider>Adds an action to be called when the XML document has been created. The XML is passed to the action as a
parameter in form of a XmlProvider. The action can modify the XML before
it is written to the output file.