Gradle Project Properties TODEPLETE

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

Internal

Overview

The current project properties can be displayed with:

task displayProjectProperties {

    doLast() {

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

Property List

properties

The property map.