Created
May 8, 2024 18:00
-
-
Save berkus/acda56f897359f3be75eab5ff096fb9a to your computer and use it in GitHub Desktop.
Groovy/Gradle print object properties
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def filtered = ['class', 'active'] | |
println theObject.properties | |
.sort{it.key} | |
.collect{it} | |
.findAll{!filtered.contains(it.key)} | |
.join('\n') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment