forked from public-mirrors/HuskSync
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
682 B
Groovy
27 lines
682 B
Groovy
dependencies {
|
|
implementation project(path: ":common", configuration: 'shadow')
|
|
implementation project(path: ":bukkit", configuration: 'shadow')
|
|
implementation project(path: ":bungeecord", configuration: 'shadow')
|
|
}
|
|
|
|
shadowJar {
|
|
destinationDirectory.set(file("$rootDir/target/"))
|
|
archiveBaseName.set('CrossServerSync')
|
|
archiveClassifier.set('')
|
|
|
|
build {
|
|
dependsOn tasks.named("shadowJar")
|
|
}
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
mavenJava(MavenPublication) {
|
|
groupId = 'me.William278'
|
|
artifactId = 'CrossServerSync-plugin'
|
|
version = "$project.version"
|
|
|
|
artifact shadowJar
|
|
}
|
|
}
|
|
} |