forked from web-push-libs/webpush-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
46 lines (33 loc) · 1.39 KB
/
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
42
43
44
45
plugins {
id 'java-library'
}
dependencies {
// For CLI
implementation group: 'com.beust', name: 'jcommander', version: '1.81'
// For making HTTP requests
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.12.0'
// For cryptographic operations
api group: 'org.bouncycastle', name: 'bcprov-jdk18on', version: '1.77'
// For creating and signing JWT
api group: 'org.bitbucket.b_c', name: 'jose4j', version: '0.9.5'
// For parsing JSON
testImplementation group: 'com.google.code.gson', name: 'gson', version: '2.8.9'
// For testing, obviously
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.8.1'
// For running JUnit tests
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.8.1'
// For turning InputStream to String
testImplementation group: 'commons-io', name: 'commons-io', version: '2.11.0'
// For reading the demo vapid keypair from a pem file
testImplementation group: 'org.bouncycastle', name: 'bcpkix-jdk18on', version: '1.77'
// For verifying Base64Encoder results in unit tests
testImplementation group: 'com.google.guava', name: 'guava', version: '33.0.0-jre'
}
test {
useJUnitPlatform()
testLogging {
events 'PASSED', 'FAILED', 'SKIPPED'
showStandardStreams true
exceptionFormat 'full'
}
}