gradle.rst
changeset 2467 0498f0cc9966
parent 2458 28c248a41a85
child 2468 cab0464c11f4
equal deleted inserted replaced
2466:ebbf146d86c1 2467:0498f0cc9966
    81 To investigate interface & values of object::
    81 To investigate interface & values of object::
    82 
    82 
    83   println it.metaClass.metaMethods*.name.sort().unique()
    83   println it.metaClass.metaMethods*.name.sort().unique()
    84   println it.metaClass.methods*.name.sort().unique()
    84   println it.metaClass.methods*.name.sort().unique()
    85   println it.properties.entrySet()*.toString().sort().toString().replaceAll(", ","\n")
    85   println it.properties.entrySet()*.toString().sort().toString().replaceAll(", ","\n")
       
    86   println it.properties.toString()
       
    87   println it.dump()
    86 
    88 
    87 https://docs.gradle.org/current/userguide/troubleshooting.html
    89 https://docs.gradle.org/current/userguide/troubleshooting.html
    88   Attaching a debugger to your build.
    90   Attaching a debugger to your build.
    89 https://stackoverflow.com/questions/22203947/how-to-dump-all-gradle-values-used-for-build
    91 https://stackoverflow.com/questions/22203947/how-to-dump-all-gradle-values-used-for-build
    90   How to dump all gradle values used for build.
    92   How to dump all gradle values used for build.