Files
NeuroDock/launcher/build.gradle
T
Zacharias f50c04c828
build / build (push) Has been cancelled
refactor: me.zacharias.chat → me.neurodock, org rename cleanup
- Renamed package from me.zacharias.chat to me.neurodock across all 8 modules
- Updated Gradle group from me.zacharias.neurodock to me.neurodock
- Updated README and other files to reflect new Gitea org URL (Chat_things → neurodock)

Dev note: 95 files touched. The Great Refactor is complete, long may it rest.
2026-05-27 23:34:22 +02:00

22 lines
361 B
Groovy

plugins {
id 'java'
}
version = '1.0-SNAPSHOT'
dependencies {
implementation project(":Display")
implementation project(":Core")
}
jar{
manifest {
attributes 'Main-Class': 'me.zacharias.chat.launcher.Launcher'
}
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(javaVersion)) // Set Java version
}
}