File tree Expand file tree Collapse file tree 3 files changed +17
-3
lines changed Expand file tree Collapse file tree 3 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ plugins {
44
44
id ' com.google.protobuf' version ' 0.8.14'
45
45
id ' io.franzbecker.gradle-lombok' version ' 4.0.0' apply false
46
46
id ' com.github.ben-manes.versions' version ' 0.36.0' // gradle dependencyUpdates
47
- id ' com.diffplug.spotless' version ' 5.9 .0'
47
+ id ' com.diffplug.spotless' version ' 5.11 .0'
48
48
}
49
49
50
50
// If you attempt to build without the `--scan` parameter in `gradle 6.0+` it will cause a build error that it can't find
@@ -60,7 +60,7 @@ if (hasProperty('buildScan')) {
60
60
wrapper {
61
61
// Update using:
62
62
// ./gradlew wrapper --gradle-version=6.5 --distribution-type=bin
63
- gradleVersion = ' 6.7.1 '
63
+ gradleVersion = ' 6.8.3 '
64
64
}
65
65
66
66
def buildTimeAndDate = OffsetDateTime . now()
@@ -98,11 +98,20 @@ allprojects {
98
98
}
99
99
format(' misc' ) {
100
100
target(' **/*.gradle' , ' **/*.md' , ' **/*.yml' )
101
+ targetExclude(' **/build/**/*.*' )
101
102
trimTrailingWhitespace()
102
103
endWithNewline()
103
104
}
104
105
}
105
106
107
+ normalization {
108
+ runtimeClasspath {
109
+ metaInf{
110
+ ignoreAttribute(' Build-Time' )
111
+ }
112
+ }
113
+ }
114
+
106
115
// Copy LICENSE
107
116
tasks. withType(Jar ) {
108
117
from(project. rootDir) {
Original file line number Diff line number Diff line change
1
+ org.gradle.caching =true
2
+ org.gradle.parallel =true
3
+ org.gradle.vfs.watch =true
4
+ org.gradle.daemon =true
5
+
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-6.7.1 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-6.8.3 -bin.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments