Back to Intellij Community

DeprecatedConfigurations

plugins/gradle/resources/inspectionDescriptions/DeprecatedConfigurations.html

2025.3-rc-2481 B
Original Source

Detects usage of configuration methods that were deprecated.

Configuration methods may be deprecated because of two possible reasons:

  • The Gradle API has evolved, so old method choices should be avoided;
  • Some plugin provides a better version of the deprecated configuration method.

Most likely there will be an alternative for the deprecated method.

Example:

plugins {
  id 'java'
}

dependencies {
  archive 'org.gradle.api:gradle:1.0' // reports 'archive'
}