Gradle Project Properties TODEPLETE: Difference between revisions

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


====buildFile====
====buildFile====
====rootDir====


====rootProject====
====rootProject====

Revision as of 19:49, 4 June 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

project

The Project instance.

projectDir

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

path

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

description

A String containing the description for the project.

displayName

buildDir

A File representing <projectDir>/build.

buildFile

rootProject

rootProject.name

state

status

properties

The property map.

Containers

configurations
plugins