pgpainless/pgpainless-core/build.gradle

24 lines
776 B
Groovy
Raw Normal View History

2020-04-11 12:48:07 +02:00
plugins {
id 'java-library'
}
dependencies {
2020-11-13 16:31:59 +01:00
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testImplementation "org.junit.jupiter:junit-jupiter-params:$junitVersion"
2020-11-13 16:31:59 +01:00
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
2020-01-09 19:05:22 +01:00
implementation "org.bouncycastle:bcprov-jdk15on:$bouncyCastleVersion"
//*
2020-04-11 12:48:07 +02:00
api "org.bouncycastle:bcpg-jdk15on:$bouncyCastleVersion"
/*/
api files("libs/bcpg-jdk18on-1.70-SNAPSHOT.jar")
// */
2021-08-25 16:33:39 +02:00
implementation "org.slf4j:slf4j-api:$slf4jVersion"
2021-08-23 13:29:57 +02:00
testImplementation 'ch.qos.logback:logback-classic:1.2.5'
// https://mvnrepository.com/artifact/com.google.code.findbugs/jsr305
2020-01-09 19:05:22 +01:00
implementation group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.2'
}