Skip to content

Commit

Permalink
Try workaround for failed publish
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasJejkal committed Apr 2, 2024
1 parent 26e4034 commit ef4bf9d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

systemProp.jdk.tls.client.protocols="TLSv1,TLSv1.1,TLSv1.2"

version=1.2.2-SNAPSHOT
version=1.2.1-SNAPSHOT
action.custom-1=install
action.custom-1.args=--configure-on-demand -w -x check clean publishToMavenLocal
action.custom-2=jacoco
Expand Down
6 changes: 6 additions & 0 deletions gradle/profile-deploy.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,12 @@ javadoc {
options.addBooleanOption('html5', true)
}
}

tasks.withType<AbstractPublishToMaven>().configureEach {
val signingTasks = tasks.withType<Sign>()
mustRunAfter(signingTasks)
}

////////////////////////////////////////////////////////////////////////////////
//for plugin io.github.gradle-nexus.publish-plugin
//see https://github.com/gradle-nexus/publish-plugin
Expand Down

0 comments on commit ef4bf9d

Please sign in to comment.