-
Notifications
You must be signed in to change notification settings - Fork 29
/
build.gradle
44 lines (36 loc) · 1.13 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
41
42
43
44
apply plugin: 'java'
apply plugin: 'war'
repositories {
jcenter()
mavenCentral()
mavenLocal()
}
dependencies {
compile fileTree(dir: 'lib', includes: ['stil_3.3-2.jar'])
compile 'javax.servlet:javax.servlet-api:3.0.1'
compile 'postgresql:postgresql:9.1-901.jdbc4'
compile 'org.slf4j:slf4j-api:1.7.25'
compile 'commons-io:commons-io:2.6'
compile 'commons-fileupload:commons-fileupload:1.3.3'
compile 'org.json:json:20180813'
testCompile 'junit:junit:4.12'
testCompile 'com.h2database:h2:1.4.193'
testCompile fileTree(dir: 'lib', include: 'astroh2-0.3.jar')
testCompile 'org.slf4j:slf4j-simple:1.7.25'
testRuntime 'simple-jndi:simple-jndi:0.11.4.1'
testRuntime 'com.vividsolutions:jts-core:1.14.0'
testRuntime 'org.locationtech.spatial4j:spatial4j:0.6'
testRuntime 'org.xerial:sqlite-jdbc:3.16.1'
}
compileJava {
options.encoding = "UTF-8"
}
test{
forkEvery = 1
include '**/Test*'
}
sourceSets.main.java.srcDirs = ["src"]
sourceSets.test.java.srcDirs = ["test"]
/* Set the minimum Java version compatibility: */
sourceCompatibility = '1.7'
targetCompatibility = '1.7'