Skip to content

Commit

Permalink
Prepare worldedit-libs for shadow upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
octylFractal committed Jul 9, 2019
1 parent a18f26f commit 05bf211
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions worldedit-libs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ dependents of `-core` to compile and work with WorldEdit's API.
*/
configure(subprojects + project("core:ap")) {
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'com.jfrog.artifactory'
Expand All @@ -23,7 +24,8 @@ configure(subprojects + project("core:ap")) {

group = rootProject.group + ".worldedit-libs"

tasks.register("jar", ShadowJar) {
tasks.replace("jar", ShadowJar)
tasks.withType(ShadowJar).named("jar").configure {
configurations = [project.configurations.shade]
classifier = ""

Expand Down Expand Up @@ -69,11 +71,15 @@ configure(subprojects + project("core:ap")) {
}

artifacts {
add("default", jar)
add("archives", sourcesJar)
add("default", jar) {
builtBy(jar)
}
add("archives", sourcesJar) {
builtBy(sourcesJar)
}
}

tasks.register("install", Upload) {
tasks.withType(Upload).named("install").configure {
configuration = configurations.archives
repositories.mavenInstaller {
pom.version = project.version
Expand Down

0 comments on commit 05bf211

Please sign in to comment.