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

[geode] 01/01: GEODE-9862: pin Gradle use of jgit (#7152)

This is an automated email from the ASF dual-hosted git repository.

jensdeppe pushed a commit to branch geode-for-redis-benchmark-baseline
in repository https://gitbox.apache.org/repos/asf/geode.git

commit fd3396a114b65ac74161a24610a3160c55b4ff8e
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 5116d5b..70e4d46 100644
--- a/buildSrc/build.gradle
+++ b/buildSrc/build.gradle
@@ -38,6 +38,9 @@ dependencies {
   implementation('me.champeau.gradle:japicmp-gradle-plugin:0.3.0')
   implementation('junit:junit:4.13.2')
 
+  // 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)
 }