Skip to content

Commit

Permalink
Upgrade log4j & junit-jupiter (#1186)
Browse files Browse the repository at this point in the history
* upgrade `log4j` from `2.20.0` to `2.21.1`
* upgrade `junit-platform` from `1.10.0` to `1.10.1`
* upgrade `junit-jupiter` from `5.10.0` to `5.10.1`
  • Loading branch information
hankem committed Nov 5, 2023
2 parents d6030be + 7db3cc5 commit 40df768
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 16 deletions.
18 changes: 9 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,17 @@ ext {
}
},
slf4j : [group: 'org.slf4j', name: 'slf4j-api', version: '2.0.9'],
log4j_api : [group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.20.0'],
log4j_core : [group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.20.0'],
log4j_slf4j : [group: 'org.apache.logging.log4j', name: 'log4j-slf4j2-impl', version: '2.20.0'],
log4j_api : [group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.21.1'],
log4j_core : [group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.21.1'],
log4j_slf4j : [group: 'org.apache.logging.log4j', name: 'log4j-slf4j2-impl', version: '2.21.1'],

junit4 : [group: 'junit', name: 'junit', version: '4.13.2'],
junit5JupiterApi : [group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.10.0'],
junit5JupiterEngine : [group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.10.0'],
junit5VintageEngine : [group: 'org.junit.vintage', name: 'junit-vintage-engine', version: '5.10.0'],
junitPlatform : [group: 'org.junit.platform', name: 'junit-platform-runner', version: '1.10.0'],
junitPlatformCommons: [group: 'org.junit.platform', name: 'junit-platform-commons', version: '1.10.0'],
junitPlatformEngine : [group: 'org.junit.platform', name: 'junit-platform-engine', version: '1.10.0'],
junit5JupiterApi : [group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.10.1'],
junit5JupiterEngine : [group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.10.1'],
junit5VintageEngine : [group: 'org.junit.vintage', name: 'junit-vintage-engine', version: '5.10.1'],
junitPlatform : [group: 'org.junit.platform', name: 'junit-platform-runner', version: '1.10.1'],
junitPlatformCommons: [group: 'org.junit.platform', name: 'junit-platform-commons', version: '1.10.1'],
junitPlatformEngine : [group: 'org.junit.platform', name: 'junit-platform-engine', version: '1.10.1'],
hamcrest : [group: 'org.hamcrest', name: 'hamcrest-core', version: '1.3'],
junit_dataprovider : [group: 'com.tngtech.java', name: 'junit-dataprovider', version: '1.11.0'],
mockito : [group: 'org.mockito', name: 'mockito-core', version: '4.6.1'],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,7 @@ plugins {
id 'com.diffplug.spotless'
}

dependencies {
spotbugs "com.github.spotbugs:spotbugs:${spotbugs.toolVersion.get()}"
}

spotbugs {
toolVersion = '4.5.2'

excludeFilter = rootProject.file('buildSrc/src/main/resources/code_quality/spotbugs-excludes.xml')
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-engine</artifactId>
<version>1.10.0</version>
<version>1.10.1</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 40df768

Please sign in to comment.