From 2c008ecf50825844cb04bea268bd55adfd3ab2f9 Mon Sep 17 00:00:00 2001 From: Paul Schaub Date: Sat, 11 Apr 2020 12:48:07 +0200 Subject: [PATCH] Add bcpg as transitive dependency --- pgpainless-core/build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pgpainless-core/build.gradle b/pgpainless-core/build.gradle index 22605d96..1672a751 100644 --- a/pgpainless-core/build.gradle +++ b/pgpainless-core/build.gradle @@ -1,3 +1,7 @@ +plugins { + id 'java-library' +} + dependencies { testImplementation group: 'junit', name: 'junit', version: '4.12' /* @@ -5,7 +9,7 @@ dependencies { /*/ implementation "org.bouncycastle:bcprov-jdk15on:$bouncyCastleVersion" //*/ - implementation "org.bouncycastle:bcpg-jdk15on:$bouncyCastleVersion" + api "org.bouncycastle:bcpg-jdk15on:$bouncyCastleVersion" // https://mvnrepository.com/artifact/com.google.code.findbugs/jsr305 implementation group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.2'