Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ docs:
[group("Repo")]
[doc("Publish the library to your local Maven repository.")]
publish-local:
./gradlew publishToMavenLocal
./gradlew publishToMavenLocal -P skipSigning

[group("Submodule")]
[doc("Initialize bdk-ffi submodule to committed hash.")]
Expand Down
6 changes: 4 additions & 2 deletions lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
}

group = "org.bitcoindevkit"
version = "2.3.0-SNAPSHOT"
version = "3.0.0-SNAPSHOT"

java {
sourceCompatibility = JavaVersion.VERSION_11
Expand Down Expand Up @@ -94,7 +94,9 @@ mavenPublishing {
)

publishToMavenCentral()
signAllPublications()
if (!providers.gradleProperty("skipSigning").isPresent) {
signAllPublications()
}
}

dokka {
Expand Down
Loading