Gradle Project Coordinates, State and Configured Properties: Difference between revisions
(→Name) |
|||
Line 18: | Line 18: | ||
println project.name | println project.name | ||
</syntaxhighlight> | </syntaxhighlight> | ||
===Maven artifactId=== | |||
==Group== | ==Group== |
Revision as of 01:32, 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.
Compatibility with Maven Project Coordinates
Gradle produces by default artifacts that are compatible with Maven repositories, so Gradle translates its project coordinates to Maven project coordinates as described in name, group and version sections: the project name becomes artifactId
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 during the build with Project.getName() or with the name
DSL variable:
println "${name}"
println project.name