Skip to content

Commit 9c58745

Browse files
committed
chore(build) version upgrades: Gradle 6.0.1 -->> 9.1.0; spotless gradle plugin: 3.27.0 -->> 8.0.0
details about changes and solved issues: - warning: `'indentWithTabs' is deprecated, use 'leadingSpacesToTabs' in your gradle build script instead`: diffplug/spotless#794 (comment) - error: `Spotless failure, no target set! You must set a target for freshmark`: (https://github.com/diffplug/spotless/tree/gradle/8.0.0/plugin-gradle#freshmark)
1 parent 207bc06 commit 9c58745

File tree

7 files changed

+247
-153
lines changed

7 files changed

+247
-153
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,6 @@ bin/
1414

1515
# Matlab stuff
1616
.m~
17+
18+
# IntelliJ Idea
19+
.idea

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,3 @@ I put all my blog posts here so that I can run CI on the code examples, and make
2424
* [A library by any other version](https://github.com/diffplug/blog/tree/master/2015/a-library-by-any-other-version) (May 15, 2015)
2525
* [A new formatting plugin](https://github.com/diffplug/blog/tree/master/2015/a-new-formatting-plugin) (May 13, 2015)
2626
* [All of heartbleed](https://github.com/diffplug/blog/tree/master/2014/all-of-heartbleed) (April 11, 2014)
27-

build.gradle

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
plugins {
2-
id "com.diffplug.gradle.spotless" version "3.27.0"
2+
id "com.diffplug.spotless" version "8.0.0"
3+
}
4+
5+
repositories {
6+
mavenCentral()
37
}
48

59
////////////
@@ -23,11 +27,12 @@ spotless {
2327
}
2428
format 'misc', {
2529
target '**/.gitignore', '**/*.gradle', '**/*.md', '**/*.sh'
26-
indentWithTabs()
30+
leadingSpacesToTabs()
2731
trimTrailingWhitespace()
2832
endWithNewline()
2933
}
3034
freshmark {
35+
target '*.md'
3136
properties {
3237
it.put('follow', FOLLOW_LINK)
3338
}

gradle/wrapper/gradle-wrapper.jar

-9.03 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
#Fri Jan 03 01:08:08 PST 2020
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
3+
distributionSha256Sum=a17ddd85a26b6a7f5ddb71ff8b05fc5104c0202c6e64782429790c933686c806
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
5+
networkTimeout=10000
6+
validateDistributionUrl=true
47
zipStoreBase=GRADLE_USER_HOME
58
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-bin.zip

0 commit comments

Comments
 (0)