@@ -21,40 +21,40 @@ repositories {
21
21
22
22
dependencies {
23
23
// For CLI
24
- compile group : ' com.beust' , name : ' jcommander' , version : ' 1.78'
24
+ implementation group : ' com.beust' , name : ' jcommander' , version : ' 1.78'
25
25
26
26
// For making HTTP requests
27
- compile group : ' org.apache.httpcomponents' , name : ' httpasyncclient' , version : ' 4.1.4'
27
+ implementation group : ' org.apache.httpcomponents' , name : ' httpasyncclient' , version : ' 4.1.4'
28
28
29
29
// For making async HTTP requests
30
- compile group : ' org.asynchttpclient' , name : ' async-http-client' , version : ' 2.12.2'
30
+ implementation group : ' org.asynchttpclient' , name : ' async-http-client' , version : ' 2.12.2'
31
31
32
32
// For cryptographic operations
33
33
shadow group : ' org.bouncycastle' , name : ' bcprov-jdk15on' , version : ' 1.68'
34
34
35
35
// For creating and signing JWT
36
- compile group : ' org.bitbucket.b_c' , name : ' jose4j' , version : ' 0.7.6'
36
+ implementation group : ' org.bitbucket.b_c' , name : ' jose4j' , version : ' 0.7.6'
37
37
38
38
// For parsing JSON
39
- testCompile group : ' com.google.code.gson' , name : ' gson' , version : ' 2.8.6'
39
+ testImplementation group : ' com.google.code.gson' , name : ' gson' , version : ' 2.8.6'
40
40
41
41
// For making HTTP requests
42
- testCompile group : ' org.apache.httpcomponents' , name : ' fluent-hc' , version : ' 4.5.13'
42
+ testImplementation group : ' org.apache.httpcomponents' , name : ' fluent-hc' , version : ' 4.5.13'
43
43
44
44
// For testing, obviously
45
- testCompile group : ' org.junit.jupiter' , name : ' junit-jupiter-api' , version : ' 5.7.0'
45
+ testImplementation group : ' org.junit.jupiter' , name : ' junit-jupiter-api' , version : ' 5.7.0'
46
46
47
47
// For running JUnit tests
48
- testRuntime group : ' org.junit.jupiter' , name : ' junit-jupiter-engine' , version : ' 5.7.0'
48
+ testRuntimeOnly group : ' org.junit.jupiter' , name : ' junit-jupiter-engine' , version : ' 5.7.0'
49
49
50
50
// For turning InputStream to String
51
- testCompile group : ' commons-io' , name : ' commons-io' , version : ' 2.8.0'
51
+ testImplementation group : ' commons-io' , name : ' commons-io' , version : ' 2.8.0'
52
52
53
53
// For reading the demo vapid keypair from a pem file
54
- testCompile group : ' org.bouncycastle' , name : ' bcpkix-jdk15on' , version : ' 1.68'
54
+ testImplementation group : ' org.bouncycastle' , name : ' bcpkix-jdk15on' , version : ' 1.68'
55
55
56
56
// For verifying Base64Encoder results in unit tests
57
- testCompile group : ' com.google.guava' , name : ' guava' , version : ' 30.1-jre'
57
+ testImplementation group : ' com.google.guava' , name : ' guava' , version : ' 30.1-jre'
58
58
}
59
59
60
60
wrapper {
0 commit comments