Skip to content

Commit b13fdd2

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`** # Conflicts: # .github/dependabot.yml
1 parent f86ce18 commit b13fdd2

File tree

2 files changed

+6
-18
lines changed

2 files changed

+6
-18
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,9 @@ updates:
1818
update-types:
1919
- patch
2020
patterns:
21-
- com.gradle.*
21+
- 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
@@ -64,10 +63,9 @@ updates:
6463
update-types:
6564
- patch
6665
patterns:
67-
- com.gradle.*
66+
- 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
@@ -110,10 +108,9 @@ updates:
110108
update-types:
111109
- patch
112110
patterns:
113-
- com.gradle.*
111+
- 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
@@ -141,7 +138,7 @@ updates:
141138
directory: /
142139
schedule:
143140
interval: weekly
144-
day: saturday
141+
day: sunday
145142
labels:
146143
- 'type: task'
147144
groups:
@@ -153,7 +150,7 @@ updates:
153150
directory: /
154151
schedule:
155152
interval: weekly
156-
day: saturday
153+
day: sunday
157154
labels:
158155
- 'type: task'
159156
groups:
@@ -166,7 +163,7 @@ updates:
166163
directory: /
167164
schedule:
168165
interval: weekly
169-
day: saturday
166+
day: sunday
170167
labels:
171168
- 'type: task'
172169
groups:

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'
@@ -46,14 +45,6 @@ ext {
4645
linkScmConnection = 'scm:git:git://github.com/spring-projects/spring-integration.git'
4746
linkScmDevConnection = 'scm:git:ssh://[email protected]:spring-projects/spring-integration.git'
4847

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

0 commit comments

Comments
 (0)