https://kotlinlang.org logo
#gradle
Title
b

bamboo

03/23/2017, 2:19 PM
huh this seems odd - how come the build scan plugin looks like:
Copy code
buildScan {
  setLicenseAgree("yes")
  setLicenseAgreementUrl(”<https://gradle.com/terms-of-service%22|https://gradle.com/terms-of-service">)
rather than
Copy code
buildScan {
  licenseAgree = "yes"
  licenseAgreementUrl = “<https://gradle.com/terms-of-service>”
even though the methods seem to fit the right signature for setters -
public void setLicenseAgreementUrl(String var1)
1 reply A setter without a getter is not visible as a property.