ACLauncher/legacy-launch/build.gradle
2024-03-15 16:34:29 -07:00

14 lines
305 B
Groovy

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 {
mainClass = 'com.aclauncher.mclauncher.legacy.LegacyMCLauncher'
}