This is an automated email from the ASF dual-hosted git repository.
ajothomas pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/samza.git
The following commit(s) were added to refs/heads/master by this push:
new 56c62677c Update versions and use io.github.rburgst instead of
com.burgstaller for okhttp-digest (#1709)
56c62677c is described below
commit 56c62677c8e2c4852afd91d14762105fb5d9421a
Author: ajo thomas <[email protected]>
AuthorDate: Tue Oct 1 12:33:18 2024 -0700
Update versions and use io.github.rburgst instead of com.burgstaller for
okhttp-digest (#1709)
---
build.gradle | 9 +++++++++
gradle/buildscript.gradle | 1 +
2 files changed, 10 insertions(+)
diff --git a/build.gradle b/build.gradle
index d40deeed5..7854c9601 100644
--- a/build.gradle
+++ b/build.gradle
@@ -22,6 +22,15 @@ buildscript {
mavenCentral()
}
+ configurations.classpath {
+ resolutionStrategy.eachDependency { details ->
+ if (details.requested.group == 'com.burgstaller' &&
details.requested.name == 'okhttp-digest' && details.requested.version ==
'1.10') {
+ details.useTarget "io.github.rburgst:${details.requested.name}:1.21"
+ details.because 'Dependency has moved'
+ }
+ }
+ }
+
apply from: file('gradle/buildscript.gradle'), to: buildscript
}
diff --git a/gradle/buildscript.gradle b/gradle/buildscript.gradle
index e11039ba9..4b4693e5a 100644
--- a/gradle/buildscript.gradle
+++ b/gradle/buildscript.gradle
@@ -30,4 +30,5 @@ dependencies {
classpath 'de.obqo.gradle:gradle-lesscss-plugin:1.0-1.3.3'
classpath 'com.bmuschko:gradle-nexus-plugin:2.3.1'
classpath 'com.github.jruby-gradle:jruby-gradle-plugin:2.0.2'
+ classpath 'org.ysb33r.gradle:grolifant:0.12.1'
}