PGPainless 0.0.1-alpha1

This commit is contained in:
Paul Schaub 2018-07-19 16:09:37 +02:00
parent 39c5464c37
commit cdf2fd4aca
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
5 changed files with 4 additions and 7 deletions

View File

@ -35,7 +35,7 @@ allprojects {
// checkstyle
checkstyle {
configFile = 'config/checkstyle.xml' as File
configFile = "${project.rootDir}/config/checkstyle.xml" as File
toolVersion = '8.10'
}

View File

@ -21,7 +21,6 @@ import org.bouncycastle.openpgp.PGPPublicKeyRing;
import org.bouncycastle.openpgp.PGPSecretKeyRing;
import org.pgpainless.key.selection.keyring.PublicKeyRingSelectionStrategy;
import org.pgpainless.key.selection.keyring.SecretKeyRingSelectionStrategy;
import org.pgpainless.key.selection.keyring.PublicKeyRingSelectionStrategy;
public class ExactUserId {

View File

@ -82,7 +82,7 @@ public class BCUtil {
*/
public static PGPSecretKeyRing getKeyRingFromCollection(PGPSecretKeyRingCollection collection, Long id)
throws PGPException, IOException {
throws PGPException {
PGPSecretKeyRing uncleanedRing = collection.getSecretKeyRing(id);
// Determine ids of signed keys

View File

@ -16,8 +16,6 @@
package org.pgpainless;
import static junit.framework.TestCase.assertEquals;
import static junit.framework.TestCase.assertNotNull;
import static junit.framework.TestCase.assertNull;
import static junit.framework.TestCase.assertTrue;
import java.io.IOException;

View File

@ -1,8 +1,8 @@
allprojects {
ext {
shortVersion = '0.0.1'
isSnapshot = true
shortVersion = '0.0.1-alpha1'
isSnapshot = false
pgpainlessMinAndroidSdk = 9
javaSourceCompatibility = 1.8
}