forked from bladenight/bladenightapp-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
33 lines (27 loc) · 990 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
apply plugin: 'java'
group = 'de.greencity.bladenightapp'
version = '0.0.1-SNAPSHOT'
description = """"""
compileJava {
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
}
repositories {
maven { url "https://maven.geotoolkit.org/" }
maven { url "https://repo.maven.apache.org/maven2" }
google()
}
dependencies {
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.1'
implementation group: 'joda-time', name: 'joda-time', version: '2.10.14'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.9.0'
implementation group: 'commons-io', name: 'commons-io', version: '2.11.0'
implementation group: 'commons-logging', name: 'commons-logging', version: '1.2'
implementation group: 'org.geotoolkit', name: 'geotk-referencing', version: '3.21'
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
}
test {
testLogging {
events "passed", "skipped", "failed"
}
}