Files
perfdb/pdb-ui/build.gradle
Andreas Huber e931856041 merge projects file-utils, byte-utils and pdb-utils
It turned out that most projects needed at least
two of the utils projects. file-utils and byte-utils
had only one class. Merging them made sense.
2019-12-08 18:47:54 +01:00

33 lines
765 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'
}
}
jar {
exclude 'application-dev.properties'
}