Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,6 @@ bin/

# Matlab stuff
.m~

# IntelliJ Idea
.idea
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
sudo: required
dist: trusty
dist: noble
language: java
jdk:
- oraclejdk8
- openjdk17
script: "./gradlew check"
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,3 @@ I put all my blog posts here so that I can run CI on the code examples, and make
* [A library by any other version](https://github.com/diffplug/blog/tree/master/2015/a-library-by-any-other-version) (May 15, 2015)
* [A new formatting plugin](https://github.com/diffplug/blog/tree/master/2015/a-new-formatting-plugin) (May 13, 2015)
* [All of heartbleed](https://github.com/diffplug/blog/tree/master/2014/all-of-heartbleed) (April 11, 2014)

9 changes: 7 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
plugins {
id "com.diffplug.gradle.spotless" version "3.27.0"
id "com.diffplug.spotless" version "8.0.0"
}

repositories {
mavenCentral()
}

////////////
Expand All @@ -23,11 +27,12 @@ spotless {
}
format 'misc', {
target '**/.gitignore', '**/*.gradle', '**/*.md', '**/*.sh'
indentWithTabs()
leadingSpacesToTabs()
trimTrailingWhitespace()
endWithNewline()
}
freshmark {
target '*.md'
properties {
it.put('follow', FOLLOW_LINK)
}
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
6 changes: 4 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#Fri Jan 03 01:08:08 PST 2020
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionSha256Sum=a17ddd85a26b6a7f5ddb71ff8b05fc5104c0202c6e64782429790c933686c806
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-bin.zip
Loading