非推奨の maven 依存関係を報告します。

例:


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

クイックフィックスを使用すると、非推奨の依存関係がメンテナンス対象の依存関係に変更されます。


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