Skip to content

Commit

Permalink
Move JUnit platform launcher version to gradle.properties
Browse files Browse the repository at this point in the history
  • Loading branch information
Hangman committed Feb 2, 2024
1 parent 0c70ba1 commit 237488d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ val gdxVersion: String by project
val jmhInstanceVersion: String by project
val jmhPluginVersion: String by project
val junitJupiterVersion: String by project
val junitJupiterPlatformLauncherVersion: String by project
val flacLibraryJavaVersion: String by project

buildscript {
Expand Down Expand Up @@ -37,7 +38,7 @@ dependencies {
testImplementation("com.badlogicgames.gdx:gdx-backend-lwjgl3:${gdxVersion}")
testImplementation("com.badlogicgames.gdx:gdx-platform:${gdxVersion}:natives-desktop")
testImplementation("com.badlogicgames.gdx:gdx:${gdxVersion}")
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.9.2")
testRuntimeOnly("org.junit.platform:junit-platform-launcher:${junitJupiterPlatformLauncherVersion}")

jmh("org.openjdk.jmh:jmh-core:${jmhInstanceVersion}")
jmh("org.openjdk.jmh:jmh-generator-annprocess:${jmhInstanceVersion}")
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
gdxVersion=1.12.1
jmhInstanceVersion=1.34
junitJupiterVersion=5.10.1
junitJupiterPlatformLauncherVersion=1.9.2
flacLibraryJavaVersion=90cee6f500

0 comments on commit 237488d

Please sign in to comment.