Gradle Project Properties TODEPLETE
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;
}
}
}