financialoverview/build.gradle
2014-08-26 20:12:49 +02:00

27 lines
No EOL
569 B
Groovy

apply plugin: 'war'
apply plugin: 'jetty'
apply plugin: 'java'
apply plugin: 'eclipse'
repositories{
mavenCentral()
}
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
dependencies {
compile("org.springframework.boot:spring-boot-starter-web:1.1.5.RELEASE")
compile 'net.sf.opencsv:opencsv:2.3'
testCompile 'junit:junit:4.11'
testCompile 'org.mockito:mockito-all:1.9.0-rc1'
}
jettyRun {
webDefaultXml = file("${project.webAppDir}/WEB-INF/jetty-webdefault.xml")
reload = "automatic"
scanIntervalSeconds = 10
}