From 011355dd76f7e82cba113af1703fe78b8d1d88cb Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Mon, 1 Aug 2022 14:50:27 +0200 Subject: [PATCH] tools_gradle_intellij_plugin_build_features.md: Remove `useDependencyFirstResolutionStrategy` feature flag --- ...ols_gradle_intellij_plugin_build_features.md | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/topics/appendix/tools/gradle_intellij_plugin/tools_gradle_intellij_plugin_build_features.md b/topics/appendix/tools/gradle_intellij_plugin/tools_gradle_intellij_plugin_build_features.md index eef2afda9..3d9b57a3e 100644 --- a/topics/appendix/tools/gradle_intellij_plugin/tools_gradle_intellij_plugin_build_features.md +++ b/topics/appendix/tools/gradle_intellij_plugin/tools_gradle_intellij_plugin_build_features.md @@ -67,20 +67,3 @@ Example ```properties org.jetbrains.intellij.buildFeature.selfUpdateCheck=false ``` - - -## useDependencyFirstResolutionStrategy - -Set the `ResolutionStrategy.SortOrder.DEPENDENCY_FIRST` resolution strategy for `compileClasspath` and `testCompileClasspath` Gradle configurations. -This behaviour allows for making the dependencies specified in the project's Gradle configuration considered before the dependencies added by the Gradle IntelliJ Plugin. -See [JetBrains/gradle-intellij-plugin#656](https://github.com/JetBrains/gradle-intellij-plugin/issues/656) for more details. - -{style="narrow"} -Default value -: `true` - -Example -: -```properties -org.jetbrains.intellij.buildFeature.useDependencyFirstResolutionStrategy=false -```