sbt-pgp icon indicating copy to clipboard operation
sbt-pgp copied to clipboard

PGP plugin for sbt

Results 19 sbt-pgp issues
Sort by recently updated
recently updated
newest added

When executing `sbt checkPgpSignatures` I get `java.lang.IllegalArgumentException` errors. Is there anything I'm missing? This is also happening when executing in the `sbt-pgp` repository. ``` [error] (sbt-pgp/*:updatePgpSignatures) java.lang.IllegalArgumentException: Cannot add artifact...

## steps sbt-pgp version: 2.2.1 sbt version: 1.9.9 Global / pgpSigningKey := Some("nonExistingKey") ## problem if the key does not exist, then the default key is used ## expectation error...

A brand new error appeared on a build configuration that has been working and stayed unchanged for months, and I'm trying to trace the source of evil. My theory is...

I have a warning about a key that's not used by any other settings/tasks: ``` ThisBuild / pomIncludeRepository := { _ => false } ``` Is pomIncludeRepository not used or...

## steps 1. Create a GPG key **without passphrase** ``` $ echo -n "" | gpg --batch --yes --pinentry-mode loopback --generate-key --passphrase-fd 0 ``` - We can show the key...

Trying to make sbt-pgp use gpg2 by changing the gpgCommand key, but it doesn't seem to have any effect. Using `useGpg := true` ``` sbt:scammanderRoot> set com.typesafe.sbt.pgp.PgpKeys.gpgCommand := "gpg2" [info]...

## steps sbt-pgp version: *2.0.0* sbt version: *1.3.3* ## problem Using credentials how it is show [README.md](https://github.com/sbt/sbt-pgp/blob/master/README.md#configuration-signing-key) will not work. When documentation part was copied from [jodersky/sbt-gpg](https://github.com/jodersky/sbt-gpg), also changes should...

The README says: > Or by setting SBT_PGP_USE_GPG environment variable to 0. This is wrong on two counts: - https://github.com/sbt/sbt-pgp/blob/90465fcde014eb0688f0086fdec56db60ebfbfd6/sbt-pgp/src/main/scala/com/jsuereth/sbtpgp/PgpSettings.scala#L22-L25 - While setting the system property to 0 would indeed...

Summary: Using `sbt-pgp` 1.1.1 with `sbt` 0.13.17 and Scala Native 0.3.8 causes Scala Native to run on the JVM rather than use the Scala Native plugin to compile and run...

It seems `publishLocalSigned` fails on newly created projects, where `publishTo` is left to its default value (`None`). Whereas `publishLocal` is fine. `publishTo` shouldn't be used, nor required, to publish stuff...