31 lines
660 B
Groovy
31 lines
660 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(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'
|
|
} |