This is an automated email from the ASF dual-hosted git repository.
rhoughton pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git
The following commit(s) were added to refs/heads/develop by this push:
new 7f5c883 Remove the pin to jgit now that grgit has fixed its POM
(#7265)
7f5c883 is described below
commit 7f5c883ad61912c14aace5ef950c3093ff06060b
Author: Robert Houghton <[email protected]>
AuthorDate: Thu Mar 3 13:15:19 2022 -0800
Remove the pin to jgit now that grgit has fixed its POM (#7265)
---
buildSrc/build.gradle | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle
index f811c17..a00327a 100644
--- a/buildSrc/build.gradle
+++ b/buildSrc/build.gradle
@@ -22,7 +22,11 @@ plugins {
repositories {
mavenCentral()
- gradlePluginPortal()
+ gradlePluginPortal() {
+ content {
+ includeModule('me.champeau.gradle', 'japicmp-gradle-plugin')
+ }
+ }
}
dependencies {
@@ -36,9 +40,6 @@ 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)
}