-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
38 lines (32 loc) · 1.12 KB
/
build.gradle
File metadata and controls
38 lines (32 loc) · 1.12 KB
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
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'maven'
apply plugin: 'application'
if (hasProperty("main")) {
mainClassName = "${main}"
} else {
System.out.println("Could not set the main class. If you are building something to be run, please specify a main class with -Pmain=com.example.package.ClassName")
mainClassName = "com.example.ClassThatDoesNotExist"
}
run {
standardInput = System.in
}
group = 'com.github.choco31415'
sourceCompatibility = 1.7
repositories {
jcenter()
mavenCentral()
}
dependencies {
compile 'com.fasterxml.jackson.core:jackson-core:2.8.0'
compile 'com.fasterxml.jackson.core:jackson-databind:2.8.0'
compile 'org.apache.commons:commons-lang3:3.4'
compile 'commons-logging:commons-logging:1.2'
compile 'org.apache.httpcomponents:httpcore:4.4.4'
compile 'org.apache.httpcomponents:httpmime:4.5.2'
compile 'com.google.http-client:google-http-client-gson:1.19.0'
compile 'com.google.apis:google-api-services-analyticsreporting:v4-rev112-1.22.0'
compile group: 'org.jfree', name: 'jfreechart', version: '1.0.19'
testCompile 'junit:junit:4.+'
}