Newer
Older
apply plugin: 'java'
apply plugin: 'war'
repositories {
jcenter()
mavenCentral()
mavenLocal()
}
dependencies {
Grégory Mantelet
committed
compile fileTree(dir: 'lib', includes: ['stil_3.1.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'
Grégory Mantelet
committed
compile 'commons-io:commons-io:2.6'
compile 'commons-fileupload:commons-fileupload:1.3.3'
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'
test{
forkEvery = 1
include '**/Test*'
}
sourceSets.test.java.srcDirs = ["test"]