mirror of https://github.com/apache/kafka.git
KAFKA-3227; Conservative update of Kafka dependencies
Patch version bumps for bouncy castle, minikdc, snappy, slf4j, scalatest and powermock. Notable fixes: * Snappy: fixes a resource leak * Bouncy castle: security fixes Also update Gradle to 2.11 (where the notable change is improved IDE integration) and the grgit build dependency. Author: Ismael Juma <ismael@juma.me.uk> Reviewers: Grant Henke <granthenke@gmail.com>, Ewen Cheslack-Postava <ewen@confluent.io> Closes #903 from ijuma/kafka-3227-conservative-update-of-kafka-deps
This commit is contained in:
parent
d7fc7cf615
commit
f355918ec7
|
@ -22,8 +22,8 @@ buildscript {
|
||||||
apply from: file('gradle/buildscript.gradle'), to: buildscript
|
apply from: file('gradle/buildscript.gradle'), to: buildscript
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
// For Apache Rat plugin to ignore non-Git files, need ancient version for Java 6 compatibility
|
// For Apache Rat plugin to ignore non-Git files
|
||||||
classpath group: 'org.ajoberstar', name: 'grgit', version: '0.2.3'
|
classpath "org.ajoberstar:grgit:1.5.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ allprojects {
|
||||||
}
|
}
|
||||||
|
|
||||||
ext {
|
ext {
|
||||||
gradleVersion = "2.10"
|
gradleVersion = "2.11"
|
||||||
buildVersionFileName = "kafka-version.properties"
|
buildVersionFileName = "kafka-version.properties"
|
||||||
|
|
||||||
userMaxForks = project.hasProperty('maxParallelForks') ? maxParallelForks.toInteger() : null
|
userMaxForks = project.hasProperty('maxParallelForks') ? maxParallelForks.toInteger() : null
|
||||||
|
|
|
@ -24,8 +24,8 @@ ext {
|
||||||
|
|
||||||
versions += [
|
versions += [
|
||||||
argparse4j: "0.5.0",
|
argparse4j: "0.5.0",
|
||||||
bcpkix: "1.53",
|
bcpkix: "1.54",
|
||||||
hadoop: "2.7.1",
|
hadoop: "2.7.2",
|
||||||
easymock: "3.4",
|
easymock: "3.4",
|
||||||
jackson: "2.6.3",
|
jackson: "2.6.3",
|
||||||
jetty: "9.2.14.v20151106",
|
jetty: "9.2.14.v20151106",
|
||||||
|
@ -34,13 +34,13 @@ versions += [
|
||||||
junit: "4.12",
|
junit: "4.12",
|
||||||
lz4: "1.3.0",
|
lz4: "1.3.0",
|
||||||
metrics: "2.2.0",
|
metrics: "2.2.0",
|
||||||
powermock: "1.6.3",
|
powermock: "1.6.4",
|
||||||
reflections: "0.9.10",
|
reflections: "0.9.10",
|
||||||
rocksDB: "3.10.1",
|
rocksDB: "3.10.1",
|
||||||
scalaTest: "2.2.5",
|
scalaTest: "2.2.6",
|
||||||
scalaParserCombinators: "1.0.4",
|
scalaParserCombinators: "1.0.4",
|
||||||
slf4j: "1.7.6",
|
slf4j: "1.7.15",
|
||||||
snappy: "1.1.2",
|
snappy: "1.1.2.1",
|
||||||
zkclient: "0.7",
|
zkclient: "0.7",
|
||||||
zookeeper: "3.4.6",
|
zookeeper: "3.4.6",
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue