forked from justinludwig/jpgpj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
41 lines (35 loc) · 903 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
plugins {
id 'java'
id 'groovy'
id 'com.scuilion.syntastic' version '0.3.6-java7'
}
group = 'org.c02e.jpgpj'
archivesBaseName = 'jpgpj'
version = '0.2.1'
description = 'Java Pretty Good Privacy Jig'
repositories {
mavenCentral()
}
dependencies {
compile 'org.bouncycastle:bcpg-jdk15on:1.59'
compile 'org.slf4j:slf4j-api:1.7.25'
testCompile 'org.codehaus.groovy:groovy-all:2.4.13'
testCompile 'org.slf4j:slf4j-simple:1.7.25'
testCompile 'org.spockframework:spock-core:1.1-groovy-2.4'
}
javadoc {
title = "JPGPJ $version API"
options.memberLevel = JavadocMemberLevel.PUBLIC
}
test {
//systemProperty 'org.slf4j.simpleLogger.defaultLogLevel', 'TRACE'
testLogging {
/*
exceptionFormat 'full'
showCauses = true
showExceptions = true
showStackTraces = true
*/
showStandardStreams = true
}
}