also, in 0.8 is there some other way to use the gr...
# gradle
b
also, in 0.8 is there some other way to use the gradle ext than this?
val ext = (this as HasConvention).convention.extraProperties
s
barteks2x:
Copy code
var wrapperVersion: String by extra
wrapperVersion = "4.0-20170523130707+0000"
or you can refer the
extra
property directly and set the value like
extra["prop1"] = "value"
p
but then you probably want to cast to `String`:
extra["prop1"] as String
, so for uch reason I use own custom externsion function
extra.string("props1")