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 project(':file-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' }