Skip to content

Commit

Permalink
build: update Gradle settings
Browse files Browse the repository at this point in the history
  • Loading branch information
tueda committed Feb 10, 2024
1 parent f1a2f40 commit 49f9224
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions donuts/java/donuts-python/build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
plugins {
id 'jacoco'
id 'java-library'
id 'com.diffplug.spotless' version '6.10.0'
id 'com.github.ben-manes.versions' version '0.42.0'
id 'com.github.johnrengelman.shadow' version '7.1.2'
id 'ru.vyarus.quality' version '4.8.0'
id 'com.diffplug.spotless' version '6.13.0' // https://github.com/diffplug/spotless/issues/1337
id 'com.github.ben-manes.versions' version '0.51.0'
id 'com.github.johnrengelman.shadow' version '8.1.1'
id 'ru.vyarus.quality' version '5.0.0'
}

group = 'com.github.tueda'
Expand All @@ -14,12 +14,12 @@ sourceCompatibility = '1.8'
targetCompatibility = '1.8'

def versions = [
checkstyle: '10.3.3',
junit: '5.9.0',
lombok: '1.18.24',
pmd: '6.49.0',
spotbugs: '4.7.2',
truth: '1.1.3',
checkstyle: '10.13.0',
junit: '5.10.2',
lombok: '1.18.30',
pmd: '6.55.0',
spotbugs: '4.8.3',
truth: '1.4.0',
]

repositories {
Expand All @@ -39,6 +39,10 @@ dependencies {

test {
useJUnitPlatform()
testLogging {
events 'failed'
exceptionFormat 'full'
}
}

spotless {
Expand Down

0 comments on commit 49f9224

Please sign in to comment.