Skip to content

Commit

Permalink
#71 Fine tuning
Browse files Browse the repository at this point in the history
  • Loading branch information
dvoraka committed Oct 2, 2016
1 parent 5459524 commit 45d52dd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
16 changes: 10 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ subprojects {

sourceCompatibility = '1.8'
targetCompatibility = '1.8'
version = '0.3-SNAPSHOT'
version = '0.3-RC1'

repositories {
mavenCentral()
Expand Down Expand Up @@ -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}")
Expand All @@ -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')
}
Expand Down
2 changes: 1 addition & 1 deletion common/src/main/resources/avservice.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 45d52dd

Please sign in to comment.