You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by on...@apache.org on 2021/11/30 03:35:50 UTC

[geode] branch support/1.14 updated: GEODE-9862: pin Gradle use of jgit (#7152)

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 <rh...@pivotal.io>
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 <rh...@pivotal.io>
    (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)
 }