Hi devs, in the preparation for releasing POI via gradle, I've added the signing plugin. The signatures are created on publishing, e.g. when publishing to local:
gradle clean PublishToMavenLocal -Dmaven.repo.local=<path to maven repo> For this to work, you need to add the credentials to your <gradle-home>/gradle.properties, e.g. ~/.gradle/gradle.properties. (see https://docs.gradle.org/current/userguide/signing_plugin.html#sec:signatory_credentials) signing.keyId=26062CE3 signing.password=<gpg password> signing.secretKeyRingFile=/<homedir>/.gnupg/secring.gpg repoUser=kiwiwings repoPassword=<apache password> I've also added SHA2 checksum generation because of this reason. My goal would be to soon replace all ant builds with the gradle counterparts. Andi. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
