Back to Intellij Community

DeprecatedMavenDependency

plugins/kotlin/code-insight/descriptions/resources-en/inspectionDescriptions/DeprecatedMavenDependency.html

2025.3-rc-2564 B
Original Source

Reports deprecated maven dependency.

Example:

<dependencies>
    <dependency>
        <groupId>org.jetbrains.kotlin</groupId>
        <artifactId>kotlin-stdlib-jre7</artifactId>
        <version>${kotlin.version}</version>
    </dependency>
  </dependencies>

The quick fix changes the deprecated dependency to a maintained one:

<dependencies>
    <dependency>
        <groupId>org.jetbrains.kotlin</groupId>
        <artifactId>kotlin-stdlib-jdk7</artifactId>
        <version>${kotlin.version}</version>
    </dependency>
  </dependencies>