Logging
This commit is contained in:
16
build.gradle
16
build.gradle
@ -12,16 +12,20 @@ repositories { jcenter() }
|
||||
springBoot { // when using spring loaded turn on noverify
|
||||
noverify = true }
|
||||
|
||||
applicationDefaultJvmArgs = [
|
||||
"-Dfile.encoding=UTF-8",
|
||||
// if you need to debug java agents:
|
||||
"-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5006"
|
||||
]
|
||||
ext {
|
||||
applicationDefaultJvmArgs = [
|
||||
"-Dfile.encoding=UTF-8",
|
||||
// if you need to debug java agents:
|
||||
"-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5006"
|
||||
]
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile (project(':ch.psi.daq.query'))
|
||||
compile 'org.hibernate:hibernate-validator:5.2.0.Final'
|
||||
|
||||
compile libraries.logback_classic
|
||||
|
||||
compile 'org.hibernate:hibernate-validator:5.2.0.Final'
|
||||
compile(libraries.spring_boot_starter_web) {
|
||||
exclude group: 'org.slf4j', module: 'log4j-over-slf4j'
|
||||
}
|
||||
|
Reference in New Issue
Block a user