Skip to content

Commit

Permalink
(Attempt to) resolve publishing issues
Browse files Browse the repository at this point in the history
  • Loading branch information
bitspittle committed Mar 8, 2023
1 parent 14018e2 commit 6c2571f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions kotter/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ publishing {
}
}

create<MavenPublication>("kotter") {
withType<MavenPublication> {
artifact(javadocJar)
pom {
val githubPath = "https://github.com/varabyte/kotter"
Expand Down Expand Up @@ -259,6 +259,6 @@ if (shouldSign()) {

// Signing requires following steps at https://docs.gradle.org/current/userguide/signing_plugin.html#sec:signatory_credentials
// and adding singatory properties somewhere reachable, e.g. ~/.gradle/gradle.properties
sign(publishing.publications["kotter"])
sign(publishing.publications)
}
}
5 changes: 2 additions & 3 deletions kotterx/kotter-test-support/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,10 @@ publishing {
}
}

create<MavenPublication>("kotterTestSupport") {
withType<MavenPublication> {
artifact(javadocJar)
val githubPath = "https://github.com/varabyte/kotter"
pom {
artifactId = "kotter-test-support"
name.set("Kotter test support")
description.set("Helper classes for writing tests for code using Kotter.")
url.set(githubPath)
Expand Down Expand Up @@ -161,6 +160,6 @@ if (shouldSign()) {

// Signing requires following steps at https://docs.gradle.org/current/userguide/signing_plugin.html#sec:signatory_credentials
// and adding singatory properties somewhere reachable, e.g. ~/.gradle/gradle.properties
sign(publishing.publications["kotterTestSupport"])
sign(publishing.publications)
}
}

0 comments on commit 6c2571f

Please sign in to comment.