Gradle Project Coordinates, State and Configured Properties: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 7: Line 7:
=Coordinates=
=Coordinates=
==Name==
==Name==
The project name is a string that identifies the project. It is initialized by default with the name of the directory that contains the project's [[build.gradle]]. The project name is not necessarily unique within a project hierarchy  
The project name is a string that identifies the project. The project name is initialized by default with the name of the directory that contains the project's [[build.gradle]]. The name is not necessarily unique within a project hierarchy, the unique identifier for the project in a hierarchy is its [[#Path|path]].


The project name can be obtained programmatically with [https://docs.gradle.org/current/javadoc/org/gradle/api/Project.html#getName-- Project.getName()] or with the <code>name</code> DSL variable:
The project name can be obtained programmatically with [https://docs.gradle.org/current/javadoc/org/gradle/api/Project.html#getName-- Project.getName()] or with the <code>name</code> DSL variable:

Revision as of 01:18, 4 October 2020

Internal

Overview

The project coordinates such as name, group, version, description and path can be read from build.gradle as values of DSL variables. Some of the coordinates, such as group, version and description can also be set. The coordinates are also available programmatically via the Project API.

Coordinates

Name

The project name is a string that identifies the project. The project name is initialized by default with the name of the directory that contains the project's build.gradle. The name is not necessarily unique within a project hierarchy, the unique identifier for the project in a hierarchy is its path.

The project name can be obtained programmatically with Project.getName() or with the name DSL variable:

println "${name}"
println project.name

Group

Version

Description

Path

Project Directory