diff options
-rw-r--r-- | build.gradle | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/build.gradle b/build.gradle index c8688dd5d0c..8b33f890c46 100644 --- a/build.gradle +++ b/build.gradle @@ -39,6 +39,11 @@ allprojects { apply plugin: 'com.jfrog.artifactory' apply plugin: 'maven-publish' + // Global exclusion of eddsa dependency + configurations.all { + exclude group: 'net.i2p.crypto', module: 'eddsa' + } + ext.versionInSources = version ext.buildNumber = System.getProperty("buildNumber") // when no buildNumber is provided, then project version must end with '-SNAPSHOT' @@ -478,9 +483,7 @@ subprojects { dependency 'org.eclipse.jgit:org.eclipse.jgit:7.3.0.202506031305-r' dependency "org.codelibs.elasticsearch.module:analysis-common:7.17.22" dependency "org.codelibs.elasticsearch.module:reindex:7.17.22" - dependency('org.tmatesoft.svnkit:svnkit:1.10.11') { - exclude 'net.i2p.crypto:eddsa' - } + dependency('org.tmatesoft.svnkit:svnkit:1.10.11') dependency 'org.hamcrest:hamcrest:3.0' dependency 'org.jsoup:jsoup:1.20.1' // JUnit 5 |