tools_gradle_intellij_plugin_build_features.md: Remove useDependencyFirstResolutionStrategy feature flag

This commit is contained in:
Jakub Chrzanowski 2022-08-01 14:50:27 +02:00
parent 0ea32bc567
commit 011355dd76
No known key found for this signature in database
GPG Key ID: C39095BFD769862E

View File

@ -67,20 +67,3 @@ Example
```properties ```properties
org.jetbrains.intellij.buildFeature.selfUpdateCheck=false 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
```