2023-03-29 03:54:52 -07:00
|
|
|
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'
|
2023-03-29 03:54:52 -07:00
|
|
|
}
|