18 lines
302 B
Groovy
18 lines
302 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'me.zacharias'
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
dependencies {
|
|
implementation project(":Display")
|
|
implementation project(":API")
|
|
implementation project(":Core")
|
|
}
|
|
|
|
jar{
|
|
manifest {
|
|
attributes 'Main-Class': 'me.zacharias.chat.launcher.Launcher'
|
|
}
|
|
} |