nebula-plugins / gradle-contacts-plugin

Structure to define the owners of a project, then contributing this back to other plugins
Apache License 2.0
14 stars 8 forks source link

Use of code that is deprecated in Gradle 8.X and will be removed in Gradle 9 #20

Closed jarzynp closed 6 months ago

jarzynp commented 6 months ago

Recently we moved with our project from gradle 7.6 to 8.7 and such part:

apply plugin: 'nebula.contacts'

contacts {
    'club@disney.com' {
        moniker 'Mickey Mouse Club'
    }
}

is now causing this warning:

> Configure project :
The org.gradle.util.ConfigureUtil type has been deprecated. This is scheduled to be removed in Gradle 9.0. Consult the upgrading guide for further information: https://docs.gradle.org/8.7/userguide/upgrading_version_8.html#org_gradle_util_reports_deprecations
jarzynp commented 6 months ago

Ok, we used old version of the plugin. After migrating to the latest one the warning is gone.