Skip to content

Commit

Permalink
update nexus publish plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
tahaak67 committed Sep 3, 2023
1 parent 44ca3be commit 651283e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,14 @@ plugins {
id 'com.android.application' version '8.1.1' apply false
id 'com.android.library' version '8.1.1' apply false
id 'org.jetbrains.kotlin.android' version '1.9.0' apply false
id("io.github.gradle-nexus.publish-plugin") version "1.2.0"
id("io.github.gradle-nexus.publish-plugin") version "1.3.0"
}

task clean(type: Delete) {
delete rootProject.buildDir
}
def signingTasks = tasks.withType(Sign)
tasks.withType(PublishToMavenRepository).configureEach {
mustRunAfter(signingTasks)
}
apply from: "${rootDir}/scripts/publish-root.gradle"
2 changes: 2 additions & 0 deletions scripts/publish-module.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,11 @@ afterEvaluate {
}

}
//https://github.com/gradle-nexus/publish-plugin/issues/208

}


signing {

useInMemoryPgpKeys(
Expand Down

0 comments on commit 651283e

Please sign in to comment.