diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index c7a0e283..6d0ab60c 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,4 +1,4 @@ -## v0.3-rc1 +## v0.3-rc1 (Oct 2, 2016) * Better performance * AV program caching for speedup same checks * Better multi-threading synchronization diff --git a/build.gradle b/build.gradle index 87f631b1..3f18d1f1 100644 --- a/build.gradle +++ b/build.gradle @@ -61,7 +61,7 @@ subprojects { sourceCompatibility = '1.8' targetCompatibility = '1.8' - version = '0.3-SNAPSHOT' + version = '0.3-RC1' repositories { mavenCentral() @@ -98,14 +98,18 @@ subprojects { } dependencies { - // log4j + // Log4j compile("org.apache.logging.log4j:log4j-api:${log4jVersion}") // compile("org.apache.logging.log4j:log4j-core:${log4jVersion}") // compile("org.apache.logging.log4j:log4j-slf4j-impl:${log4jVersion}") // compile("org.apache.logging.log4j:log4j-jcl:${log4jVersion}") - // bridge to Logback + // Log4j to SLF4J compile("org.apache.logging.log4j:log4j-to-slf4j:${log4jVersion}") + // JCL to SLF4J + compile("org.slf4j:jcl-over-slf4j:1.7.21") + // Logback compile("ch.qos.logback:logback-classic:1.1.6") + // Logstash encoder compile('net.logstash.logback:logstash-logback-encoder:4.7') // Spring compile("org.springframework:spring-core:${springVersion}") @@ -115,14 +119,14 @@ subprojects { exclude group: 'org.springframework', module: 'spring-tx' exclude group: 'org.springframework', module: 'spring-messaging' } - // Groovy - compile("org.codehaus.groovy:groovy-all:${groovyVersion}") + // Groovy + testCompile("org.codehaus.groovy:groovy-all:${groovyVersion}") // Spring test testCompile("org.springframework:spring-test:${springVersion}") // Spock - testCompile("org.spockframework:spock-spring:${spockVersion}") testCompile("org.spockframework:spock-core:${spockVersion}") + testCompile("org.spockframework:spock-spring:${spockVersion}") // Cglib testCompile('cglib:cglib-nodep:3.2.4') } diff --git a/common/src/main/resources/avservice.properties b/common/src/main/resources/avservice.properties index 099f5310..9e130bf3 100644 --- a/common/src/main/resources/avservice.properties +++ b/common/src/main/resources/avservice.properties @@ -13,7 +13,7 @@ avservice.db.user = docker avservice.db.pass = docker avservice.db.hibernate.dialect = org.hibernate.dialect.PostgreSQLDialect -avservice.db.hibernate.show_sql = true +avservice.db.hibernate.show_sql = false # AMQP avservice.amqp.host = localhost