mirror of
https://gitlab.com/2009scape/2009scape.git
synced 2025-12-18 04:20:19 -07:00
17 lines
No EOL
397 B
Groovy
17 lines
No EOL
397 B
Groovy
apply plugin: 'application'
|
|
|
|
archivesBaseName = 'managementserver'
|
|
|
|
mainClassName = 'ms.Management'
|
|
|
|
dependencies {
|
|
implementation 'com.google.guava:guava:29.0-jre'
|
|
implementation 'mysql:mysql-connector-java:8.0.21'
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes 'Main-Class': 'ms.Management'
|
|
}
|
|
from { configurations.compileClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
|
|
} |