Skip to content

Commit

Permalink
Use latest version of checkstyle to avoid Guava CVE
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Widdis <[email protected]>
  • Loading branch information
dbwiddis committed Jan 12, 2025
1 parent 1ce5e78 commit 6506378
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,23 @@ buildscript {
}
}

plugins {
id 'eclipse'
id 'idea'
id 'com.diffplug.spotless'
id 'checkstyle'
}

apply from: rootProject.file('formatter/formatting.gradle')

checkstyle {
toolVersion = "latest.release"
}

allprojects {
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'maven-publish'
apply plugin: 'eclipse'
apply plugin: 'jacoco'
apply plugin: 'com.diffplug.spotless'
apply plugin: 'checkstyle'

repositories {
mavenLocal()
Expand Down Expand Up @@ -223,7 +232,6 @@ subprojects {
}
}

apply from: rootProject.file('formatter/formatting.gradle')

// Task to update version
task updateVersion {
Expand Down

0 comments on commit 6506378

Please sign in to comment.