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
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:
<syntaxhighlight lang='groovy'>
println project.name
</syntaxhighlight>


==Group==
==Group==

Revision as of 01:13, 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 can be obtained programmatically with Project.getName() or with the name DSL variable:

println project.name

Group

Version

Description

Path

Project Directory