You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@samza.apache.org by sh...@apache.org on 2019/03/12 15:23:16 UTC

[samza] branch master updated: Post 1.0 version, samza does not support scala 2.10 version. Removing (#949)

This is an automated email from the ASF dual-hosted git repository.

shanthoosh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/samza.git


The following commit(s) were added to refs/heads/master by this push:
     new 9c38011  Post 1.0 version, samza does not support scala 2.10 version. Removing (#949)
9c38011 is described below

commit 9c38011d5ea9d0871bbeaa8e3351ca8d63abb915
Author: shanthoosh <sv...@linkedin.com>
AuthorDate: Tue Mar 12 08:23:03 2019 -0700

    Post 1.0 version, samza does not support scala 2.10 version. Removing (#949)
    
    the references of the scala 2.10 version from the documentation.
---
 README.md                                                | 2 +-
 RELEASE.md                                               | 2 +-
 docs/contribute/tests.md                                 | 2 +-
 docs/learn/tutorials/versioned/remote-debugging-samza.md | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index d0a4ec8..ec1cd94 100644
--- a/README.md
+++ b/README.md
@@ -28,7 +28,7 @@ After the bootstrap script has completed, the regular gradlew instructions below
 
 #### Scala and YARN
 
-Samza builds with [Scala](http://www.scala-lang.org/) 2.10 or 2.11 and [YARN](http://hadoop.apache.org/docs/current/hadoop-yarn/hadoop-yarn-site/YARN.html) 2.6.1, by default. Use the -PscalaSuffix switches to change Scala versions. Samza supports building Scala with 2.10 and 2.11.
+Samza builds with [Scala](http://www.scala-lang.org/) 2.11 or 2.12 and [YARN](http://hadoop.apache.org/docs/current/hadoop-yarn/hadoop-yarn-site/YARN.html) 2.6.1, by default. Use the -PscalaSuffix switches to change Scala versions. Samza supports building Scala with 2.11 and 2.12.
 
     ./gradlew -PscalaSuffix=2.11 clean build
 
diff --git a/RELEASE.md b/RELEASE.md
index ff90748..7ecb5f9 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -119,7 +119,7 @@ If the VOTE has successfully passed on the release candidate, you can log in to
 [repository web interface](https://repository.apache.org) (same as above) and "release" 
 the org.apache.samza repository listed under "Staging Repositories".
 
-The instructions above publish the Samza artifacts for scala 2.11. To publish for scala 2.10 and 2.12:
+The instructions above publish the Samza artifacts for scala 2.11. To publish for scala 2.12:
 
 * Set the desired `scalaSuffix` in `gradle.properties`.
 * Run `./gradlew clean uploadArchives` to generate and upload the Samza artifacts.
diff --git a/docs/contribute/tests.md b/docs/contribute/tests.md
index 6b724bd..9b94765 100644
--- a/docs/contribute/tests.md
+++ b/docs/contribute/tests.md
@@ -41,7 +41,7 @@ Samza's unit tests can also be run against all supported permutations of Scala a
 
 To run the tests against a specific combination:
 
-    ./gradlew -PscalaSuffix=2.10 -PyarnVersion=2.4.0 clean check
+    ./gradlew -PscalaSuffix=2.11 -PyarnVersion=2.4.0 clean check
 
 To run Samza's unit tests against all permutations, run:
 
diff --git a/docs/learn/tutorials/versioned/remote-debugging-samza.md b/docs/learn/tutorials/versioned/remote-debugging-samza.md
index 5486148..a59d416 100644
--- a/docs/learn/tutorials/versioned/remote-debugging-samza.md
+++ b/docs/learn/tutorials/versioned/remote-debugging-samza.md
@@ -47,7 +47,7 @@ cd samza
 Let's also release Samza to Maven's local repository, so hello-samza has access to the JARs that it needs.
 
 {% highlight bash %}
-./gradlew -PscalaSuffix=2.10 clean publishToMavenLocal
+./gradlew -PscalaSuffix=2.11 clean publishToMavenLocal
 {% endhighlight %}
 
 Next, open Eclipse, and import the Samza source code into your workspace: "File" &gt; "Import" &gt; "Existing Projects into Workspace" &gt; "Browse". Select 'samza' folder, and hit 'finish'.