ben-manes / gradle-versions-plugin

Gradle plugin to discover dependency updates
Apache License 2.0
3.83k stars 200 forks source link

checking for gradle enterprise plugin version in settings.gradle.kts file #720

Open AnouarDoukkali opened 1 year ago

AnouarDoukkali commented 1 year ago

hello, when I execute the task :dependencyUpdates , it does not check the gradle enterprise version in the settings.gradle.kts file

settings.gradle.kts:

plugins {
  id("com.gradle.enterprise").version("3.12.2")
}

gradleEnterprise {
    buildScan {
        termsOfServiceUrl = "https://gradle.com/terms-of-service"
        termsOfServiceAgree = "yes"
    }
}
ben-manes commented 1 year ago

See the comments in https://github.com/ben-manes/gradle-versions-plugin/issues/367 for a proposal of how this might be done. PRs are welcome.