ACLauncher/legacy-launch/build.gradle

15 lines
305 B
Groovy
Raw Permalink Normal View History

plugins {
id 'java'
id 'application'
}
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
group = 'com.atlauncher'
version = rootProject.file('src/main/resources/version').text.trim().replace('.Beta', '')
application {
2024-03-15 16:34:29 -07:00
mainClass = 'com.aclauncher.mclauncher.legacy.LegacyMCLauncher'
}