Skip to content

Commit

Permalink
t7
Browse files Browse the repository at this point in the history
  • Loading branch information
Ecdcaeb authored May 3, 2024
1 parent 2ac6508 commit 7a53982
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion gradle/scripts/helpers.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,15 @@ ext.interpolate = this.&interpolate as MethodClosure
ext.assertProperty = this.&assertProperty as MethodClosure
ext.assertSubProperties = this.&assertSubProperties as MethodClosure
ext.setDefaultProperty = this.&setDefaultProperty as MethodClosure
ext.assertEnvironmentVariable = this.&assertEnvironmentVariable as MethodClosure
ext.assertEnvironmentVariable = this.&assertEnvironmentVariable as Properties, MethodClosure
ext.propertyStringCustom = this.&propertyStringCustom as Properties, MethodClosure
ext.propertyBoolCustom = this.&propertyBoolCustom as Properties, MethodClosure
ext.propertyStringListCustom = this.&propertyStringListCustom as Properties, MethodClosure
ext.interpolateCustom = this.&interpolateCustom as Properties, MethodClosure
ext.assertPropertyCustom = this.&assertPropertyCustom as Properties, MethodClosure
ext.assertSubPropertiesCustom = this.&assertSubPropertiesCustom as Properties, MethodClosure
ext.setDefaultPropertyCustom = this.&setDefaultPropertyCustom as Properties, MethodClosure
ext.assertEnvironmentVariableCustom = this.&assertEnvironmentVariableCustom as Properties, MethodClosure

String propertyString(String key) {
return $property(key).toString()
Expand Down

0 comments on commit 7a53982

Please sign in to comment.