cbeust / jcommander

Command line parsing framework for Java
Apache License 2.0
1.95k stars 332 forks source link

Gradle warning: use testImplementation instead of testCompile #496

Closed ghost closed 11 months ago

ghost commented 4 years ago

Gradle warns about the use of the deprecated testCompile:

./gradlew --warning-mode all clean build

> Configure project :
The testCompile configuration has been deprecated for dependency declaration. This will fail with an error in Gradle 7.0. Please use the testImplementation configuration instead.
        at Build_gradle$4.invoke(build.gradle.kts:63)

This PR changes the use of testCompile to testImplementation.

mkarg commented 11 months ago

Thank you for your contribution. Apparently the code already was modified and does not contain the outdated code line, so your PR meanwhile got obsolete.