Skip to content

Commit

Permalink
fix missing common source jar
Browse files Browse the repository at this point in the history
  • Loading branch information
OroArmor committed Mar 5, 2021
1 parent 3d96f7a commit 2c58e9b
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,13 @@ subprojects {
}

artifacts {
archives remapJar, javadocJar
if (!project.name.contains("common"))
archives sourceJar
archives remapJar, javadocJar, sourceJar
}

tasks.withType(Sign) {
onlyIf { project.hasProperty("sign") }
}

println(project.hasProperty("sign"))

if(project.hasProperty("sign")) {
signing {
useGpgCmd()
Expand Down

0 comments on commit 2c58e9b

Please sign in to comment.