-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
26 lines (23 loc) · 927 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
plugins {
id 'java'
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
implementation 'com.google.code.gson:gson:2.9.1'
implementation 'net.java.dev.jna:jna:5.10.0'
implementation 'org.apache.httpcomponents.client5:httpclient5:5.2.1'
implementation 'org.slf4j:slf4j-api:2.0.7'
implementation 'org.slf4j:slf4j-simple:2.0.7'
implementation 'org.postgresql:postgresql:42.3.1'
implementation 'org.apache.commons:commons-dbcp2:2.9.0'
implementation 'org.apache.httpcomponents:httpcore-nio:4.4.14'
implementation group: 'org.asynchttpclient', name: 'async-http-client', version: '2.12.3'
implementation 'oauth.signpost:signpost-core:1.2.1.2'
implementation 'com.squareup.okhttp3:okhttp:4.9.1'
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
implementation 'commons-codec:commons-codec:1.15'
implementation 'org.glassfish:javax.json:1.1.4'
}