Groovy Documentation

org.gradle.api.plugins
[Groovy] Class BasePluginConvention

java.lang.Object
  org.gradle.api.plugins.BasePluginConvention

class BasePluginConvention
extends java.lang.Object

Property Summary
java.lang.String archivesBaseName

The base name to use for archive files.

java.lang.String distsDirName

The name for the distributions directory.

java.lang.String libsDirName

The name for the libs directory.

org.gradle.api.internal.project.ProjectInternal project

 
Constructor Summary
BasePluginConvention(Project project)

 
Method Summary
java.io.File getDistsDir()

Returns the directory to generate TAR and ZIP archives into.

java.io.File getLibsDir()

Returns the directory to generate JAR and WAR archives into.

 
Methods inherited from class java.lang.Object
java.lang.Object#wait(), java.lang.Object#wait(long), java.lang.Object#wait(long, int), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll()
 

Property Detail

archivesBaseName

java.lang.String archivesBaseName
The base name to use for archive files.


distsDirName

java.lang.String distsDirName
The name for the distributions directory. This in interpreted relative to the project' build directory.


libsDirName

java.lang.String libsDirName
The name for the libs directory. This in interpreted relative to the project' build directory.


project

org.gradle.api.internal.project.ProjectInternal project


 
Constructor Detail

BasePluginConvention

BasePluginConvention(Project project)


 
Method Detail

getDistsDir

java.io.File getDistsDir()
Returns the directory to generate TAR and ZIP archives into.
Returns:
The directory. Never returns null.


getLibsDir

java.io.File getLibsDir()
Returns the directory to generate JAR and WAR archives into.
Returns:
The directory. Never returns null.


 

Groovy Documentation