Files
perfdb/pdb-ui/build.gradle
Andreas Huber 65b37e9c67 initial commit of the new UI based on Angular
At this point it is still the example Angular application.
2019-10-08 18:18:24 +02:00

32 lines
697 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')
implementation project(':pdb-js')
compile(lib_spring_boot_mustache) {
exclude module: 'spring-boot-starter-logging'
}
compile(lib_spring_boot_web){
exclude module: 'spring-boot-starter-logging'
}
compile(lib_spring_boot_log4j2)
testCompile(lib_spring_boot_test){
exclude module: 'spring-boot-starter-logging'
}
}
jar {
exclude 'application-dev.properties'
}