Gradleの失敗があります:
..."Deprecated Gradle features were used in this build, making it incompatible with Gradle 5.0."
ケースの説明:
- 次のライブラリをプロジェクトコードベースに添付します。
APP / build.gradle
//(Required) Writing and executing Unit Tests on the JUnit Platform
testImplementation "org.junit.jupiter:junit-jupiter-api:5.2.0"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.2.0"
// (Optional) If you need "Parameterized Tests"
testImplementation "org.junit.jupiter:junit-jupiter-params:5.2.0"
// (Optional) If you also have JUnit 4-based tests
testImplementation "junit:junit:4.12"
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.2.0"
testImplementation "io.mockk:mockk:1.8.5"
gradle-wrapper.propertiesを更新しました
distributionUrl = https .... gradle- 4.4-all .zip to 4.7-all
そのgradleのすべてが成功を収めた後
テストカルスを作成しました
@TestInstance(TestInstance.Lifecycle.PER_CLASS) class TestClass { @Test internal fun testName() { Assert.assertEquals(2, 1 + 1) } }
コマンドライン引数
./gradlew --warning-mode=all
を指定してGradleビルドを実行し、非推奨の機能が正確に何であるかを確認しました。
その結果、アプリをビルドできず、FAILURE:メッセージが表示されました。