Slackbot
08/25/2023, 8:03 PMChris Lee
08/25/2023, 8:09 PMVampire
08/25/2023, 8:09 PMid("org.sonarqube").version("3.3") with syntactic sugar of GroovyVamsh S
08/25/2023, 8:12 PMmethodA("abc").methodB("xyz") as methodA "abc" methodB "xyz". So from where is this convention comming and can this convention be used all over build.gradle.Vampire
08/25/2023, 8:13 PMChris Lee
08/25/2023, 8:14 PMGroovy lets you omit parentheses around the arguments of a method call for top-level statements. “command chain” feature extends this by allowing us to chain such parentheses-free method calls, requiring neither parentheses around arguments, nor dots between the chained calls.http://docs.groovy-lang.org/docs/latest/html/documentation/core-domain-specific-languages.html
Vamsh S
08/25/2023, 8:14 PMChris Lee
08/25/2023, 8:14 PMChris Lee
08/25/2023, 8:15 PMVamsh S
08/25/2023, 8:37 PM