mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-18 02:12:06 +01:00
17 lines
577 B
Groovy
17 lines
577 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.jetbrains:annotations:19.0.0'
|
|
testImplementation group: 'junit', name: 'junit', version: '4.12'
|
|
/*
|
|
implementation "org.bouncycastle:bcprov-debug-jdk15on:$bouncyCastleVersion"
|
|
/*/
|
|
implementation "org.bouncycastle:bcprov-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'
|
|
}
|