Gradle Project Properties TODEPLETE: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 95: Line 95:


====buildPath====
====buildPath====
====rootProject====
The root project. <font color='darkgray'>TODO: more details here, especially about rootProject.name.</font>


==Directories==
==Directories==

Revision as of 23:17, 17 July 2018

Internal

Overview

The current project properties can be displayed with:

task displayProjectProperties {

    doLast() {

        for(Map.Entry p: project.getProperties()) {
            
            println p;
        }
    }
}

Property List

name

Gradle Project - name

group

Gradle Project - group

version

Gradle Project - version

parent

rootProject

Maintains the reference to the root project's org.gradle.api.internal.project.DefaultProject_Decorated instance.

rootProject.name
Gradle Project - name

path

A String containing the absolute path of the project. The path of the root project is ":"

path=:

childProjects

projectPath

project

The Project instance.

description

A String containing the description for the project.

displayName

displayName=root project 'Playground RECON Serialization/Deserialization'

buildFile

state

state=project state 'EXECUTED'

status

status=integration

properties

The property map.

archivesBaseName

Defaults to name.

subprojects

parentIdentifier

depth

buildFile

buildPath

Directories

buildDir

rootDir

The absolute path of the project root directory.

testResultsDirName

Name of the relative directory.

testResultsDir

Absolute path.

projectDir

The File instance corresponding to the directory containing the build script.

buildDir

A File representing <projectDir>/build.

docsDir

reportsDir

distsDirName

docsDirName

testReportDir

testReportDirName

libsDir

distsDir

libsDirName

Containers

configurations
plugins
projectRegistry

tasks

dependencies

extensions

configurationActions

components

services

repositories

artifacts

sourceSets

All Plugin Properties

All Externally Defined Project Properties

Factories

Interesting and Unexplained

module

script

gradle

buildscript

allprojects