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:43 UTC

[geode] branch geode-for-redis-benchmark-baseline created (now fd3396a)

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

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


      at fd3396a  GEODE-9862: pin Gradle use of jgit (#7152)

This branch includes the following new commits:

     new fd3396a  GEODE-9862: pin Gradle use of jgit (#7152)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


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

Posted by je...@apache.org.
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)
 }