37 lines
908 B
Groovy
37 lines
908 B
Groovy
|
|
apply plugin: 'application'
|
|
|
|
|
|
mainClassName = "org.lucares.pdbui.PdbWebapp"
|
|
applicationDefaultJvmArgs = [
|
|
"-Dspring.profiles.active=production",
|
|
"-Dspring.config.location=.",
|
|
"-Ddb.base=data"
|
|
]
|
|
|
|
dependencies {
|
|
implementation project(':pdb-api')
|
|
implementation project(':performanceDb')
|
|
implementation project(':pdb-plotting')
|
|
implementation project(':pdb-js')
|
|
implementation project(':pdb-utils')
|
|
|
|
implementation lib_commons_csv
|
|
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'
|
|
exclude module: 'junit'
|
|
exclude module: 'junit-vintage-engine'
|
|
}
|
|
}
|
|
|
|
jar {
|
|
exclude 'application-dev.properties'
|
|
} |