Package org.gradle.api.plugins
Class BasePluginConvention
- java.lang.Object
-
- org.gradle.api.plugins.BasePluginConvention
-
@Deprecated public abstract class BasePluginConvention extends java.lang.Object
Deprecated.UseBasePluginExtension
instead. This class is scheduled for removal in Gradle 9.0.A
Convention
used for the BasePlugin.
-
-
Constructor Summary
Constructors Constructor Description BasePluginConvention()
Deprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description abstract java.lang.String
getArchivesBaseName()
Deprecated.The base name to use for archive files.abstract DirectoryProperty
getDistsDirectory()
Deprecated.Returns the directory to generate TAR and ZIP archives into.abstract java.lang.String
getDistsDirName()
Deprecated.The name for the distributions directory.abstract DirectoryProperty
getLibsDirectory()
Deprecated.Returns the directory to generate JAR and WAR archives into.abstract java.lang.String
getLibsDirName()
Deprecated.The name for the libs directory.abstract void
setArchivesBaseName(java.lang.String archivesBaseName)
Deprecated.abstract void
setDistsDirName(java.lang.String distsDirName)
Deprecated.abstract void
setLibsDirName(java.lang.String libsDirName)
Deprecated.
-
-
-
Method Detail
-
getDistsDirectory
public abstract DirectoryProperty getDistsDirectory()
Deprecated.Returns the directory to generate TAR and ZIP archives into.- Returns:
- The directory. Never returns null.
- Since:
- 6.0
-
getLibsDirectory
public abstract DirectoryProperty getLibsDirectory()
Deprecated.Returns the directory to generate JAR and WAR archives into.- Returns:
- The directory. Never returns null.
- Since:
- 6.0
-
getDistsDirName
public abstract java.lang.String getDistsDirName()
Deprecated.The name for the distributions directory. This in interpreted relative to the project' build directory.
-
setDistsDirName
public abstract void setDistsDirName(java.lang.String distsDirName)
Deprecated.
-
getLibsDirName
public abstract java.lang.String getLibsDirName()
Deprecated.The name for the libs directory. This in interpreted relative to the project' build directory.
-
setLibsDirName
public abstract void setLibsDirName(java.lang.String libsDirName)
Deprecated.
-
getArchivesBaseName
public abstract java.lang.String getArchivesBaseName()
Deprecated.The base name to use for archive files.
-
setArchivesBaseName
public abstract void setArchivesBaseName(java.lang.String archivesBaseName)
Deprecated.
-
-