gmazzo/gradle-buildconfig-plugin

Private properties have been deprecated and is scheduled to be removed in Gradle 7.0

natros opened this issue · 1 comments

When running with gradle 6.1 with --warning-mode all gradle gives me the warning

Property 'fieldsProperty' is private and annotated with @Input. 
  This behaviour has been deprecated and is scheduled to be removed in Gradle 7.0.
Property 'generatorProperty' is private and annotated with @Input. 
  This behaviour has been deprecated and is scheduled to be removed in Gradle 7.0
buildConfig {
  className = 'Version'
  packageName = 'com.test'
  buildConfigField("String", "VERSION", "\"${project.version}\"")
}

Fixed at 1.7.1. Thanks!