Files
perfdb/pdb-ui/build.gradle
Andreas Huber aadc9cbd21 move TcpIngestor to pdb-ui
and start it in the web application.
Also use the spring way of handling property files.
2017-03-19 08:00:18 +01:00

26 lines
625 B
Groovy

apply plugin: 'application'
mainClassName = "org.lucares.pdbui.PdbWebapp"
applicationDefaultJvmArgs = [
"-Dspring.profiles.active=production",
"-Dspring.config.location=.",
"-Ddb.base=data"
]
dependencies {
compile project(':performanceDb')
compile project(':pdb-plotting')
compile("org.springframework.boot:spring-boot-starter-web:1.5.2.RELEASE"){
exclude module: 'spring-boot-starter-logging'
}
compile("org.springframework.boot:spring-boot-starter-log4j2:1.5.2.RELEASE")
testCompile("org.springframework.boot:spring-boot-starter-test:1.5.2.RELEASE")
}
jar {
exclude 'application-dev.properties'
}