mirror of
https://github.com/WiIIiam278/HuskSync.git
synced 2026-01-03 22:16:17 +00:00
Initial project setup, building, setup planning, readme & redis
This commit is contained in:
27
plugin/build.gradle
Normal file
27
plugin/build.gradle
Normal file
@@ -0,0 +1,27 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user