Skip to content

Commit c4fa56b

Browse files
committed
Remove redundant now grgit Gradle plugin
The `grgit` Gradle plugin has been used to determine modified files to update their Copyright. After migrating to a `-present` pattern we don't need to track modified files anymore. Therefore, we don't need to manage `org.ajoberstar.grgit` plugin, too. **Cherry-pick to `6.5.x` & `6.4.x`**
1 parent f5da99d commit c4fa56b

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ updates:
2121
- org.gradle.*
2222
- com.github.spotbugs
2323
- io.spring.*
24-
- org.ajoberstar.grgit
2524
- org.antora
2625
- com.google.protobuf
2726
- io.micrometer:micrometer-docs-generator
@@ -67,7 +66,6 @@ updates:
6766
- org.gradle.*
6867
- com.github.spotbugs
6968
- io.spring.*
70-
- org.ajoberstar.grgit
7169
- org.antora
7270
- com.google.protobuf
7371
- io.micrometer:micrometer-docs-generator
@@ -113,7 +111,6 @@ updates:
113111
- org.gradle.*
114112
- com.github.spotbugs
115113
- io.spring.*
116-
- org.ajoberstar.grgit
117114
- org.antora
118115
- com.google.protobuf
119116
- io.micrometer:micrometer-docs-generator

build.gradle

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ buildscript {
1717
plugins {
1818
id 'base'
1919
id 'io.spring.nohttp' version '0.0.11' apply false
20-
id 'org.ajoberstar.grgit' version '5.3.2'
2120
id 'io.spring.dependency-management' version '1.1.7'
2221
id 'org.jetbrains.dokka' version '1.9.20'
2322
id 'org.antora' version '1.0.0'
@@ -47,14 +46,6 @@ ext {
4746
linkScmConnection = 'scm:git:git://github.com/spring-projects/spring-integration.git'
4847
linkScmDevConnection = 'scm:git:ssh://[email protected]:spring-projects/spring-integration.git'
4948

50-
modifiedFiles =
51-
files()
52-
.from {
53-
files(grgit.status().unstaged.modified)
54-
.filter { f -> f.name.endsWith('.java') || f.name.endsWith('.kt') || f.name.endsWith('.groovy') }
55-
}
56-
modifiedFiles.finalizeValueOnRead()
57-
5849
apacheSshdVersion = '2.15.0'
5950
artemisVersion = '2.41.0'
6051
aspectjVersion = '1.9.24'

0 commit comments

Comments
 (0)