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.
22 lines
449 B
Groovy
22 lines
449 B
Groovy
plugins {
|
|
id 'maven-publish'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(path: ':bukkit', configuration: 'shadow')
|
|
implementation project(path: ':api', configuration: 'shadow')
|
|
}
|
|
|
|
shadowJar {
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
mavenJava(MavenPublication) {
|
|
groupId = 'net.william278'
|
|
artifactId = 'husksync-plugin'
|
|
version = "$rootProject.version"
|
|
artifact shadowJar
|
|
}
|
|
}
|
|
} |