GradleProject

Represents a Gradle project.

Since

1.0-milestone-5

Functions

Link copied to clipboard
@Nullable
abstract fun findByPath(path: String): @Nullable GradleProject
Searches all descendants (children, grand-children, etc.), including self, by given path.
Link copied to clipboard
abstract fun getBuildDirectory(): File
Returns the build directory for this project.
Link copied to clipboard
Returns the build script for this project.
Link copied to clipboard
Returns a path to the project for the full build tree
Link copied to clipboard
Returns the child elements, or the empty set if there are no child elements.
Link copied to clipboard
@Nullable
abstract fun getDescription(): @Nullable String
Returns the description of the element, or null if it has no description.
Link copied to clipboard
abstract fun getName(): String
Returns the name of the element.
Link copied to clipboard
abstract fun getParent(): GradleProject
Returns the parent of this element, or null} if there is no parent.
Link copied to clipboard
abstract fun getPath(): String
Returns the path of this project.
Link copied to clipboard
abstract fun getProjectDirectory(): File
Returns the project directory for this project.
Link copied to clipboard
Returns the identifier for this Gradle project.
Link copied to clipboard
abstract fun getTasks(): DomainObjectSet<out GradleTask>
Returns the tasks of this project.