-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.gradle
32 lines (24 loc) · 1.14 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
// Apply the java plugin to add support for Java
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
// In this section you declare where to find the dependencies of your project
repositories {
mavenCentral()
mavenLocal()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
// In this section you declare the dependencies for your production and test code
dependencies {
// The production code uses the SLF4J logging API at compile time
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.4'
compile group: 'org.apache.httpcomponents', name: 'httpcore', version: '4.4.8'
compile group: 'org.json', name: 'json', version: '20171018'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.9'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
compile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.25'
compile group: 'com.intuit.quickbooks-online', name: 'oauth2-platform-api', version: '5.0.4'
compile group: 'com.intuit.quickbooks-online', name: 'payments-api', version: '5.0.5'
testCompile 'junit:junit:4.12'
}