Gradle Project: Difference between revisions
Line 17: | Line 17: | ||
=Project API and build.gradle DSL= | =Project API and build.gradle DSL= | ||
The build script classpath for the project can be configured with [https://docs.gradle.org/current/javadoc/org/gradle/api/Project.html#buildscript-groovy.lang.Closure- Project.buildscript(Closure)] which corresponds to the "buildscript" DSL element: | <span id='Build_Script_Classpath'></span>The build script classpath for the project can be configured with [https://docs.gradle.org/current/javadoc/org/gradle/api/Project.html#buildscript-groovy.lang.Closure- Project.buildscript(Closure)] which corresponds to the "buildscript" DSL element: | ||
<syntaxhighlight lang='groovy'> | <syntaxhighlight lang='groovy'> | ||
buildscript { | buildscript { | ||
Line 23: | Line 23: | ||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
More details are available in: {{Internal|Gradle Build Script Classpath|Build Script Classpath}} | |||
Plugins for the build can be configured with [https://docs.gradle.org/current/javadoc/org/gradle/api/plugins/PluginAware.html#apply-java.util.Map- PluginAware.apply(...)], which corresponds to the "apply" DSL element: | Plugins for the build can be configured with [https://docs.gradle.org/current/javadoc/org/gradle/api/plugins/PluginAware.html#apply-java.util.Map- PluginAware.apply(...)], which corresponds to the "apply" DSL element: |
Revision as of 00:21, 4 October 2020
External
- Project API: org.gradle.api.Project
- Project DSL: https://docs.gradle.org/current/dsl/org.gradle.api.Project.html
Internal
TO DEPLETE
Overview
A Gradle project typically represents a software component to be built by executing a set of tasks in sequence. A project has a direct class representation in the Gradle domain model: org.gradle.api.Project.
The project instance is available to the build.gradle script via the project
variable, which corresponds to the Project.getProject() accessor. The project instance is not available in settings.gradle, only the root project descriptor via rootProject
variable, which corresponds to Settings.getRootProject().
Project API and build.gradle DSL
The build script classpath for the project can be configured with Project.buildscript(Closure) which corresponds to the "buildscript" DSL element:
buildscript {
// configuration closure
}
More details are available in:
Plugins for the build can be configured with PluginAware.apply(...), which corresponds to the "apply" DSL element:
apply "" ""