diff options
| author | 2025-08-25 22:28:24 -0500 | |
|---|---|---|
| committer | 2025-08-25 22:28:24 -0500 | |
| commit | 954e102e836e19ea425253f1990fff8d76dd98b4 (patch) | |
| tree | 2dc68f8a09efc5b11c88ee4154b6487db0baadbb /gui/build.gradle.kts | |
initial commit
Diffstat (limited to 'gui/build.gradle.kts')
| -rw-r--r-- | gui/build.gradle.kts | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gui/build.gradle.kts b/gui/build.gradle.kts new file mode 100644 index 0000000..16b7bf3 --- /dev/null +++ b/gui/build.gradle.kts @@ -0,0 +1,30 @@ +plugins { + application +} + +java { + toolchain { + languageVersion = JavaLanguageVersion.of(8) + } +} + +group = "dev.figboot.launcher" +version = "1.0-SNAPSHOT" + +repositories { + mavenCentral() +} + +dependencies { + testImplementation(platform("org.junit:junit-bom:5.10.0")) + testImplementation("org.junit.jupiter:junit-jupiter") +} + +tasks.test { + useJUnitPlatform() +} + +application { + mainClass = "dev.figboot.launcher.gui.GUIMain" + applicationDefaultJvmArgs = listOf("-Dswing.aatext=true", "-Dawt.useSystemAAFontSettings=on") +} |
