-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
executable file
·40 lines (30 loc) · 1.15 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
plugins {
id "us.kirchmeier.capsule" version "1.0.1"
}
apply plugin: 'base' // To add "clean" task to the root project.
apply plugin: 'java'
apply plugin: 'eclipse'
sourceCompatibility = '1.8'
task fatCapsule(type: FatCapsule) {
applicationClass 'com.sprinteins.coronaticker.CoronaTicker'
}
eclipse {
project {
buildCommand 'org.eclipse.wst.common.project.facet.core.builder'
buildCommand 'org.eclipse.jdt.core.javabuilder'
buildCommand 'org.eclipse.wst.validation.validationbuilder'
natures 'org.eclipse.jem.workbench.JavaEMFNature', 'org.eclipse.wst.common.modulecore.ModuleCoreNature', 'org.eclipse.jdt.core.javanature', 'org.eclipse.wst.common.project.facet.core.nature'
}
pathVariables 'GRADLE_USER_HOME': gradle.gradleUserHomeDir
}
repositories {
mavenLocal();
mavenCentral();
}
dependencies {
testCompile "junit:junit:4.12"
compile group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.7.2'
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
//compile group: 'org.apache.commons', name: 'commons-lang3', version:'3.4'
//compile group: 'log4j', name: 'log4j', version:'1.2.17'
}