Skip to content

Commit

Permalink
build: Bump dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
zml2008 committed Nov 10, 2021
1 parent 1a5f417 commit 8727c7a
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 53 deletions.
6 changes: 4 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ val mathVersion: String by project
dependencies {
val caffeineVersion: String by project
val errorproneVersion: String by project
val junitVersion: String by project
val mockitoVersion: String by project
val pluginSpiVersion: String by project

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

testImplementation(platform("org.junit:junit-bom:5.7.2"))
testImplementation(platform("org.junit:junit-bom:$junitVersion"))
testImplementation("org.junit.jupiter:junit-jupiter-api")
testImplementation("org.junit.jupiter:junit-jupiter-params")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
testImplementation("org.hamcrest:hamcrest:2.2")
testImplementation("org.mockito:mockito-core:3.10.0")
testImplementation("org.mockito:mockito-core:$mockitoVersion")
}
tasks {
genEventImpl {
Expand Down
8 changes: 5 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ projectDescription=A plugin API for Minecraft: Java Edition

org.gradle.parallel=true

adventureVersion=4.9.2
caffeineVersion=2.9.1
adventureVersion=4.9.3
caffeineVersion=2.9.2
configurateVersion=4.1.2
errorproneVersion=2.8.1
errorproneVersion=2.10.0
junitVersion=5.8.1
log4jVersion=2.8.1
mathVersion=2.0.1
mockitoVersion=4.0.0
pluginSpiVersion=0.3.0
Loading

0 comments on commit 8727c7a

Please sign in to comment.