Package org.gradle.api.plugins
Class WarPluginConvention
- java.lang.Object
-
- org.gradle.api.plugins.WarPluginConvention
-
public abstract class WarPluginConvention extends Object
A
Conventionused for the WarPlugin.
-
-
Constructor Summary
Constructors Constructor Description WarPluginConvention()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract ProjectgetProject()abstract FilegetWebAppDir()Returns the web application directory.abstract StringgetWebAppDirName()The name of the web application directory, relative to the project directory.abstract voidsetWebAppDirName(String webAppDirName)
-
-
-
Method Detail
-
getWebAppDir
public abstract File getWebAppDir()
Returns the web application directory.
-
getWebAppDirName
public abstract String getWebAppDirName()
The name of the web application directory, relative to the project directory.
-
setWebAppDirName
public abstract void setWebAppDirName(String webAppDirName)
-
getProject
public abstract Project getProject()
-
-