-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
37 lines (29 loc) · 913 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
plugins {
id 'java'
id "com.github.johnrengelman.shadow" version "7.0.0"
}
jar {
manifest {
attributes(
'Main-Class': 'icu.jnet.coinmarketcap.Main'
)
}
}
group 'icu.jnet.coinmarketcap'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.0'
// 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/com.google.http-client/google-http-client
implementation group: 'com.google.http-client', name: 'google-http-client', version: '1.39.2'
implementation 'com.github.JicuNull:AntiCaptcha-API:1.3'
}
test {
useJUnitPlatform()
}