Repository: aurora Updated Branches: refs/heads/master b272b8808 -> e9abb2239
Update mybatis, h2, and jmh to their latest versions. I have skimmed the changelogs and the following h2 entries stood out: * "Garbage collection of unused chunks should now be faster." * "Improve performance of cleaning up temp tables - patch from Eric Faulhaber." Running our micro-benchmarks did not indicate any note-worthy performance difference. Full changelogs: * http://www.h2database.com/html/changelog.html * https://github.com/mybatis/mybatis-3/releases Reviewed at https://reviews.apache.org/r/52739/ Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/e9abb223 Tree: http://git-wip-us.apache.org/repos/asf/aurora/tree/e9abb223 Diff: http://git-wip-us.apache.org/repos/asf/aurora/diff/e9abb223 Branch: refs/heads/master Commit: e9abb223969e8e4dff1fa46ea158025de03aee83 Parents: b272b88 Author: Stephan Erb <[email protected]> Authored: Tue Oct 11 20:13:21 2016 +0200 Committer: Stephan Erb <[email protected]> Committed: Tue Oct 11 20:13:21 2016 +0200 ---------------------------------------------------------------------- build.gradle | 6 +++--- config/findbugs/excludeFilter.xml | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/aurora/blob/e9abb223/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index 3cd083c..0fd756a 100644 --- a/build.gradle +++ b/build.gradle @@ -91,7 +91,7 @@ For more details, please see https://issues.apache.org/jira/browse/AURORA-1169 ext.jsrRev = '3.0.1' ext.junitRev = '4.12' ext.logbackRev = '1.1.3' - ext.mybatisRev = '3.3.1' + ext.mybatisRev = '3.4.1' ext.protobufRev = '2.6.1' ext.servletRev = '3.1.0' ext.slf4jRev = '1.7.12' @@ -355,7 +355,7 @@ dependencies { compile "com.google.inject:guice:${guiceRev}" compile "com.google.inject.extensions:guice-assistedinject:${guiceRev}" compile "com.google.protobuf:protobuf-java:${protobufRev}" - compile 'com.h2database:h2:1.4.190' + compile 'com.h2database:h2:1.4.192' compile 'com.hubspot.jackson:jackson-datatype-protobuf:0.9.3' compile "com.fasterxml.jackson.core:jackson-core:${jacksonRev}" compile "com.sun.jersey:jersey-core:${jerseyRev}" @@ -629,7 +629,7 @@ jmh { if (project.hasProperty('benchmarks')) { include = project.getProperty('benchmarks') } - jmhVersion = '1.11.3' + jmhVersion = '1.15' jvmArgsPrepend = '-Xmx3g' humanOutputFile = project.file("$jmhHumanOutputPath") resultsFile = project.file("$buildDir/reports/jmh/results.txt") http://git-wip-us.apache.org/repos/asf/aurora/blob/e9abb223/config/findbugs/excludeFilter.xml ---------------------------------------------------------------------- diff --git a/config/findbugs/excludeFilter.xml b/config/findbugs/excludeFilter.xml index 1c311d3..5eaa11a 100644 --- a/config/findbugs/excludeFilter.xml +++ b/config/findbugs/excludeFilter.xml @@ -34,6 +34,7 @@ limitations under the License. <Bug pattern="DLS_DEAD_LOCAL_STORE" /> <Bug pattern="NM_CLASS_NAMING_CONVENTION" /> <Bug pattern="UUF_UNUSED_FIELD" /> + <Bug pattern="URF_UNREAD_FIELD" /> </Or> </Match>
