forked from Chat_things/NeuroDock
20 lines
257 B
Groovy
20 lines
257 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'me.zacharias'
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
dependencies {
|
|
implementation project(":Core")
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
jar{
|
|
manifest {
|
|
attributes 'Main-Class': 'me.zacharias.char.api.APIServer'
|
|
}
|
|
} |