Files
perfdb/pdb-ui/build.gradle
Andreas Huber 4367323fcd replace deprecated dependency configurations
Using api and implementation instead of the
deprecated compile configuration.

Update to Gradle 6.0.
2019-11-10 11:08:50 +01:00

37 lines
907 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_mustache) {
exclude module: 'spring-boot-starter-logging'
}
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'
}