-
Notifications
You must be signed in to change notification settings - Fork 16
/
build.gradle
44 lines (33 loc) · 1.49 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
plugins {
id 'java'
id "com.github.johnrengelman.shadow" version "6.1.0"
}
jar {
manifest {
attributes 'Main-Class': 'icu.jnet.whatsjava.Main'
}
}
repositories {
mavenCentral()
}
dependencies {
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
// https://mvnrepository.com/artifact/com.google.guava/guava
implementation group: 'com.google.guava', name: 'guava', version: '30.1.1-jre'
// https://mvnrepository.com/artifact/com.google.code.gson/gson
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.7'
// https://mvnrepository.com/artifact/commons-codec/commons-codec
implementation group: 'commons-codec', name: 'commons-codec', version: '1.14'
// https://mvnrepository.com/artifact/commons-io/commons-io
implementation group: 'commons-io', name: 'commons-io', version: '2.7'
// https://mvnrepository.com/artifact/org.whispersystems/curve25519-java
implementation group: 'org.whispersystems', name: 'curve25519-java', version: '0.5.0'
// https://mvnrepository.com/artifact/com.google.zxing/core
implementation group: 'com.google.zxing', name: 'core', version: '3.4.0'
// https://mvnrepository.com/artifact/at.favre.lib/hkdf
implementation group: 'at.favre.lib', name: 'hkdf', version: '1.0.2'
// https://mvnrepository.com/artifact/com.neovisionaries/nv-websocket-client
compile group: 'com.neovisionaries', name: 'nv-websocket-client', version: '2.14'
// Use JUnit test framework
testImplementation 'junit:junit:4.12'
}