aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatteo Mara <matteo.mara@sonarsource.com>2025-06-17 14:50:55 +0200
committersonartech <sonartech@sonarsource.com>2025-07-03 20:04:26 +0000
commit1ccf2322046f36999e055fce6526abd8b21fddec (patch)
tree821579033aa696df91bcaa791bf69ae9793f4e29
parentb8edbc5071ec4f5dfbbe2cbeaf692c932e348641 (diff)
downloadsonarqube-1ccf2322046f36999e055fce6526abd8b21fddec.tar.gz
sonarqube-1ccf2322046f36999e055fce6526abd8b21fddec.zip
NO-JIRA Enforce specific resolution strategy for net.java.dev.jna:jna
Co-authored-by: Alain Kermis <alain.kermis@sonarsource.com>
-rw-r--r--build.gradle5
1 files changed, 4 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index bc0f777c2f5..538be207da6 100644
--- a/build.gradle
+++ b/build.gradle
@@ -269,10 +269,13 @@ subprojects {
transitive = false
}
- // global exclusions
+ // global exclusions and resolution strategies
all {
// do not conflict with com.sun.mail:javax.mail
exclude group: 'javax.mail', module: 'mail'
+ resolutionStrategy {
+ force 'net.java.dev.jna:jna:5.14.0'
+ }
}
}