Hi,

I want to dump of the properties so I created a task like:

createTask('properties-dump') {
        println "System Properties:"
        System.properties.each {
                println "   $it"
        }
        
        println "Project Properties:"
        org.gradle.project.each {
                println "   $it"
        }
}


the system properties works but the project properties does not obviously. How would I go about dumping the values of the local scope, project scope, list plugins, env and any other values of interest.

thx
gradle newbie
~mike

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

   http://xircles.codehaus.org/manage_email


Reply via email to