Package org.gradle.api.plugins
Class JavaPluginConvention
java.lang.Object
org.gradle.api.plugins.JavaPluginConvention
Deprecated.
Is mixed into the project when applying the
JavaBasePlugin
.-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionabstract void
Deprecated.If this method is called, Gradle will not automatically try to fetch dependencies which have a JVM version compatible with this module.abstract boolean
Deprecated.Tells if automatic JVM targeting is enabled.abstract File
Deprecated.Returns a file pointing to the root directory supposed to be used for all docs.abstract String
Deprecated.The name of the docs directory.abstract org.gradle.api.internal.project.ProjectInternal
Deprecated.abstract JavaVersion
Deprecated.Returns the source compatibility used for compiling Java sources.abstract SourceSetContainer
Deprecated.The source sets container.abstract JavaVersion
Deprecated.Returns the target compatibility used for compiling Java sources.abstract File
Deprecated.Returns a file pointing to the root directory to be used for reports.abstract String
Deprecated.The name of the test reports directory.abstract File
Deprecated.Returns a file pointing to the root directory of the test results.abstract String
Deprecated.The name of the test results directory.abstract Manifest
manifest()
Deprecated.Creates a new instance of aManifest
.abstract Manifest
Deprecated.Creates and configures a new instance of aManifest
.abstract Manifest
Deprecated.Creates and configures a new instance of aManifest
.abstract void
setDocsDirName
(String docsDirName) Deprecated.abstract void
setSourceCompatibility
(Object value) Deprecated.Sets the source compatibility used for compiling Java sources.abstract void
Deprecated.Sets the source compatibility used for compiling Java sources.abstract void
setTargetCompatibility
(Object value) Deprecated.Sets the target compatibility used for compiling Java sources.abstract void
Deprecated.Sets the target compatibility used for compiling Java sources.abstract void
setTestReportDirName
(String testReportDirName) Deprecated.abstract void
setTestResultsDirName
(String testResultsDirName) Deprecated.abstract Object
sourceSets
(Closure closure) Deprecated.Configures the source sets of this project.
-
Constructor Details
-
JavaPluginConvention
public JavaPluginConvention()Deprecated.
-
-
Method Details
-
sourceSets
Deprecated.Configures the source sets of this project.The given closure is executed to configure the
SourceSetContainer
. TheSourceSetContainer
is passed to the closure as its delegate.See the example below how
SourceSet
'main' is accessed and how theSourceDirectorySet
'java' is configured to exclude some package from compilation.plugins { id 'java' } sourceSets { main { java { exclude 'some/unwanted/package/**' } } }
- Parameters:
closure
- The closure to execute.- Returns:
- NamedDomainObjectContainer<org.gradle.api.tasks.SourceSet>
-
getDocsDir
Deprecated.Returns a file pointing to the root directory supposed to be used for all docs. -
getTestResultsDir
Deprecated.Returns a file pointing to the root directory of the test results. -
getTestReportDir
Deprecated.Returns a file pointing to the root directory to be used for reports. -
getSourceCompatibility
Deprecated.Returns the source compatibility used for compiling Java sources. -
setSourceCompatibility
Deprecated.Sets the source compatibility used for compiling Java sources.- Parameters:
value
- The value for the source compatibility as defined byJavaVersion.toVersion(Object)
-
setSourceCompatibility
Deprecated.Sets the source compatibility used for compiling Java sources.- Parameters:
value
- The value for the source compatibility
-
getTargetCompatibility
Deprecated.Returns the target compatibility used for compiling Java sources. -
setTargetCompatibility
Deprecated.Sets the target compatibility used for compiling Java sources.- Parameters:
value
- The value for the target compatibility as defined byJavaVersion.toVersion(Object)
-
setTargetCompatibility
Deprecated.Sets the target compatibility used for compiling Java sources.- Parameters:
value
- The value for the target compatibility
-
manifest
Deprecated.Creates a new instance of aManifest
. -
manifest
Deprecated.Creates and configures a new instance of aManifest
. The given closure configures the new manifest instance before it is returned.- Parameters:
closure
- The closure to use to configure the manifest.
-
manifest
Deprecated.Creates and configures a new instance of aManifest
.- Parameters:
action
- The action to use to configure the manifest.- Since:
- 3.5
-
getDocsDirName
Deprecated.The name of the docs directory. Can be a name or a path relative to the build dir. -
setDocsDirName
Deprecated. -
getTestResultsDirName
Deprecated.The name of the test results directory. Can be a name or a path relative to the build dir. -
setTestResultsDirName
Deprecated. -
getTestReportDirName
Deprecated.The name of the test reports directory. Can be a name or a path relative toReportingExtension.getBaseDir()
. -
setTestReportDirName
Deprecated. -
getSourceSets
Deprecated.The source sets container. -
getProject
public abstract org.gradle.api.internal.project.ProjectInternal getProject()Deprecated. -
disableAutoTargetJvm
public abstract void disableAutoTargetJvm()Deprecated.If this method is called, Gradle will not automatically try to fetch dependencies which have a JVM version compatible with this module. This should be used whenever the default behavior is not applicable, in particular when for some reason it's not possible to split a module and that this module only has some classes which require dependencies on higher versions.- Since:
- 5.3
-
getAutoTargetJvmDisabled
public abstract boolean getAutoTargetJvmDisabled()Deprecated.Tells if automatic JVM targeting is enabled. When disabled, Gradle will not automatically try to get dependencies corresponding to the same (or compatible) level as the target compatibility of this module.- Since:
- 5.3
-
JavaPluginExtension
. This class is scheduled for removal in Gradle 9.0.