mirror of
https://gitlab.com/2009scape/2009scape.git
synced 2025-12-09 16:45:44 -07:00
23 lines
No EOL
503 B
Groovy
23 lines
No EOL
503 B
Groovy
apply plugin: 'application'
|
|
|
|
archivesBaseName = 'managementserver'
|
|
|
|
mainClassName = 'ms.Management'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation "com.github.ajalt.mordant:mordant:2.0.0-alpha2"
|
|
implementation "org.jetbrains:markdown-jvm:0.2.0"
|
|
implementation 'mysql:mysql-connector-java:8.0.21'
|
|
}
|
|
|
|
|
|
jar {
|
|
manifest {
|
|
attributes 'Main-Class': 'ms.Management'
|
|
}
|
|
from { configurations.compileClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
|
|
} |