Skip to content

Commit 61476f6

Browse files
committed
Update build.gradle
1 parent bb14437 commit 61476f6

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

build.gradle

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
plugins {
2-
// Apply the java-library plugin to add support for Java Library
3-
id 'java-library'
4-
id "com.github.johnrengelman.shadow" version "6.1.0"
2+
// Apply the java-library plugin to add support for Java Library
3+
id 'java-library'
4+
id "com.github.johnrengelman.shadow" version "6.0.0"
55
}
66

77
jar {
8-
manifest {
9-
attributes 'Main-Class': 'icu.jnet.whatsjava.Main'
10-
}
8+
manifest {
9+
attributes 'Main-Class': 'icu.jnet.whatsjava.Main'
10+
}
1111
}
1212

1313
repositories {
@@ -22,23 +22,23 @@ dependencies {
2222
implementation 'com.google.code.gson:gson:2.8.6'
2323

2424
// https://mvnrepository.com/artifact/commons-codec/commons-codec
25-
implementation group: 'commons-codec', name: 'commons-codec', version: '1.14'
25+
compile group: 'commons-codec', name: 'commons-codec', version: '1.14'
2626

2727
// https://mvnrepository.com/artifact/commons-io/commons-io
28-
implementation group: 'commons-io', name: 'commons-io', version: '2.7'
28+
compile group: 'commons-io', name: 'commons-io', version: '2.7'
2929

3030
// https://mvnrepository.com/artifact/org.whispersystems/curve25519-java
31-
implementation group: 'org.whispersystems', name: 'curve25519-java', version: '0.5.0'
32-
31+
compile group: 'org.whispersystems', name: 'curve25519-java', version: '0.5.0'
32+
3333
// https://mvnrepository.com/artifact/com.google.zxing/core
34-
implementation group: 'com.google.zxing', name: 'core', version: '3.4.0'
34+
compile group: 'com.google.zxing', name: 'core', version: '3.4.0'
3535

3636
// https://mvnrepository.com/artifact/at.favre.lib/hkdf
37-
implementation group: 'at.favre.lib', name: 'hkdf', version: '1.0.2'
37+
compile group: 'at.favre.lib', name: 'hkdf', version: '1.0.2'
3838

3939
// https://mvnrepository.com/artifact/com.neovisionaries/nv-websocket-client
40-
implementation group: 'com.neovisionaries', name: 'nv-websocket-client', version: '2.10'
40+
compile 'com.neovisionaries:nv-websocket-client:2.10'
4141

4242
// Use JUnit test framework
4343
testImplementation 'junit:junit:4.12'
44-
}
44+
}

0 commit comments

Comments
 (0)