Files
perfdb/pdb-ui/build.gradle
Andreas Huber 52a3cdc42b remove dependency to SpringBoot Mustache
It is no longer needed since we switched to Angular.
2019-12-07 08:33:40 +01:00

34 lines
809 B
Groovy

apply plugin: 'application'
mainClassName = "org.lucares.pdbui.PdbWebapp"
applicationDefaultJvmArgs = [
"-Dspring.profiles.active=production",
"-Dspring.config.location=.",
"-Ddb.base=data"
]
dependencies {
implementation project(':performanceDb')
implementation project(':pdb-plotting')
implementation project(':pdb-js')
implementation project(':pdb-utils')
implementation lib_commons_lang3
implementation lib_primitive_collections
implementation(lib_spring_boot_web){
exclude module: 'spring-boot-starter-logging'
}
implementation(lib_spring_boot_log4j2)
testImplementation(lib_spring_boot_test){
exclude module: 'spring-boot-starter-logging'
}
testImplementation project(':file-utils')
}
jar {
exclude 'application-dev.properties'
}