This is an automated email from the ASF dual-hosted git repository.
onichols pushed a commit to branch support/1.14
in repository https://gitbox.apache.org/repos/asf/geode.git
The following commit(s) were added to refs/heads/support/1.14 by this push:
new fb1b28d GEODE-9862: pin Gradle use of jgit (#7152)
fb1b28d is described below
commit fb1b28df570babc7d01d8f1a313d2a82d1042ce5
Author: Robert Houghton <[email protected]>
AuthorDate: Mon Nov 29 16:12:07 2021 -0800
GEODE-9862: pin Gradle use of jgit (#7152)
* dependency of grgit used in GemFireVersion.properties
Authored-by: Robert Houghton <[email protected]>
(cherry picked from commit 5d89d4f6e6ded010d05434e76d7baed6c7e9db28)
---
buildSrc/build.gradle | 3 +++
1 file changed, 3 insertions(+)
diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle
index 58f1eb7..93ab552 100644
--- a/buildSrc/build.gradle
+++ b/buildSrc/build.gradle
@@ -40,6 +40,9 @@ dependencies {
implementation('junit:junit:4.13.1')
+ // Pin jgit to 5.13.0 to fix grgit having open dependencies on jgit, which
rolled to java 11 with version 6.
+ runtimeOnly('org.eclipse.jgit:org.eclipse.jgit:5.13.0.202109080827-r')
+
testAnnotationProcessor(this.project)
}