From ae1ee81c710d6f6ed5c64cb0804fcadf91060bc8 Mon Sep 17 00:00:00 2001 From: JG9 Date: Fri, 26 Jul 2024 11:00:36 +0300 Subject: [PATCH] Type in depemdencies --- .../tools_intellij_platform_gradle_plugin_faq.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/topics/appendix/tools/intellij_platform_gradle_plugin/tools_intellij_platform_gradle_plugin_faq.md b/topics/appendix/tools/intellij_platform_gradle_plugin/tools_intellij_platform_gradle_plugin_faq.md index 3cf1e1d92..107d87452 100644 --- a/topics/appendix/tools/intellij_platform_gradle_plugin/tools_intellij_platform_gradle_plugin_faq.md +++ b/topics/appendix/tools/intellij_platform_gradle_plugin/tools_intellij_platform_gradle_plugin_faq.md @@ -39,7 +39,7 @@ java.lang.NoClassDefFoundError: org/opentest4j/AssertionFailedError To apply the workaround, add the missing `org.opentest4j:opentest4j` test dependency to your Gradle build configuration: ```kotlin -depemdencies { +dependencies { // ... testImplementation("org.opentest4j:opentest4j:1.3.0") } @@ -60,7 +60,7 @@ Caused by: java.lang.NoClassDefFoundError: org/junit/rules/TestRule To apply the workaround, add the JUnit4 test runtime dependency to your Gradle build configuration: ```kotlin -depemdencies { +dependencies { // ... testRuntimeOnly("junit:junit:4.13.2") }