Skip to content

Commit 8727c7a

Browse files
committed
build: Bump dependency versions
1 parent 1a5f417 commit 8727c7a

File tree

5 files changed

+57
-53
lines changed

5 files changed

+57
-53
lines changed

build.gradle.kts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ val mathVersion: String by project
2929
dependencies {
3030
val caffeineVersion: String by project
3131
val errorproneVersion: String by project
32+
val junitVersion: String by project
33+
val mockitoVersion: String by project
3234
val pluginSpiVersion: String by project
3335

3436
// Directly tied to what's available from Minecraft
@@ -111,12 +113,12 @@ dependencies {
111113
// Math library
112114
api("org.spongepowered:math:$mathVersion")
113115

114-
testImplementation(platform("org.junit:junit-bom:5.7.2"))
116+
testImplementation(platform("org.junit:junit-bom:$junitVersion"))
115117
testImplementation("org.junit.jupiter:junit-jupiter-api")
116118
testImplementation("org.junit.jupiter:junit-jupiter-params")
117119
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
118120
testImplementation("org.hamcrest:hamcrest:2.2")
119-
testImplementation("org.mockito:mockito-core:3.10.0")
121+
testImplementation("org.mockito:mockito-core:$mockitoVersion")
120122
}
121123
tasks {
122124
genEventImpl {

gradle.properties

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,12 @@ projectDescription=A plugin API for Minecraft: Java Edition
66

77
org.gradle.parallel=true
88

9-
adventureVersion=4.9.2
10-
caffeineVersion=2.9.1
9+
adventureVersion=4.9.3
10+
caffeineVersion=2.9.2
1111
configurateVersion=4.1.2
12-
errorproneVersion=2.8.1
12+
errorproneVersion=2.10.0
13+
junitVersion=5.8.1
1314
log4jVersion=2.8.1
1415
mathVersion=2.0.1
16+
mockitoVersion=4.0.0
1517
pluginSpiVersion=0.3.0

0 commit comments

Comments
 (0)