From 69963a8e49b5b5720d073a3260ec5a515a4c1ff6 Mon Sep 17 00:00:00 2001 From: Ismael Juma Date: Wed, 9 Mar 2016 08:39:57 +0000 Subject: [PATCH] Update to Scala 2.11.8 --- README.md | 4 ++-- gradle/dependencies.gradle | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c2ed1a7037816..bc2ca3afb07e1 100644 --- a/README.md +++ b/README.md @@ -60,10 +60,10 @@ The release file can be found inside `./core/build/distributions/`. ### Cleaning the build ### ./gradlew clean -### Running a task on a particular version of Scala (either 2.10.6 or 2.11.7) ### +### Running a task on a particular version of Scala (either 2.10.6 or 2.11.8) ### *Note that if building the jars with a version other than 2.10, you need to set the `SCALA_BINARY_VERSION` variable or change it in `bin/kafka-run-class.sh` to run the quick start.* -You can pass either the major version (eg 2.11) or the full version (eg 2.11.7): +You can pass either the major version (eg 2.11) or the full version (eg 2.11.8): ./gradlew -PscalaVersion=2.11 jar ./gradlew -PscalaVersion=2.11 test diff --git a/gradle/dependencies.gradle b/gradle/dependencies.gradle index eebe0078e6275..3610430995e27 100644 --- a/gradle/dependencies.gradle +++ b/gradle/dependencies.gradle @@ -47,7 +47,7 @@ versions += [ // Add Scala version def defaultScala210Version = '2.10.6' -def defaultScala211Version = '2.11.7' +def defaultScala211Version = '2.11.8' if (hasProperty('scalaVersion')) { if (scalaVersion == '2.10') { versions["scala"] = defaultScala210Version