Repository: predictionio
Updated Branches:
refs/heads/livedoc 875b98020 -> 309e24665
Bump version to 0.13.0-SNAPSHOT
Project: http://git-wip-us.apache.org/repos/asf/predictionio/repo
Commit: http://git-wip-us.apache.org/repos/asf/predictionio/commit/a87b7a6d
Tree: http://git-wip-us.apache.org/repos/asf/predictionio/tree/a87b7a6d
Diff: http://git-wip-us.apache.org/repos/asf/predictionio/diff/a87b7a6d
Branch: refs/heads/livedoc
Commit: a87b7a6d90e071f0c92455b1a157681bae8bdf2a
Parents: 018ea8e
Author: Chan Lee <chanlee514@gmail.com>
Authored: Wed Sep 27 20:16:57 2017 -0700
Committer: Chan Lee <chanlee514@gmail.com>
Committed: Wed Sep 27 20:16:57 2017 -0700
----------------------------------------------------------------------
build.sbt | 2 +-
tests/pio_tests/engines/recommendation-engine/build.sbt | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/predictionio/blob/a87b7a6d/build.sbt
----------------------------------------------------------------------
diff --git a/build.sbt b/build.sbt
index a02bdd9..a67b738 100644
--- a/build.sbt
+++ b/build.sbt
@@ -46,7 +46,7 @@ lazy val scalaSparkDepsVersion = Map(
name := "apache-predictionio-parent"
-version in ThisBuild := "0.12.0-incubating"
+version in ThisBuild := "0.13.0-SNAPSHOT"
organization in ThisBuild := "org.apache.predictionio"
http://git-wip-us.apache.org/repos/asf/predictionio/blob/a87b7a6d/tests/pio_tests/engines/recommendation-engine/build.sbt
----------------------------------------------------------------------
diff --git a/tests/pio_tests/engines/recommendation-engine/build.sbt b/tests/pio_tests/engines/recommendation-engine/build.sbt
index 70c11eb..4cf483d 100644
--- a/tests/pio_tests/engines/recommendation-engine/build.sbt
+++ b/tests/pio_tests/engines/recommendation-engine/build.sbt
@@ -19,13 +19,13 @@ import AssemblyKeys._
assemblySettings
-scalaVersion in ThisBuild := sys.env.getOrElse("PIO_SCALA_VERSION", "2.10.5")
+scalaVersion in ThisBuild := sys.env.getOrElse("PIO_SCALA_VERSION", "2.11.8")
name := "template-scala-parallel-recommendation"
organization := "org.apache.predictionio"
libraryDependencies ++= Seq(
- "org.apache.predictionio" %% "apache-predictionio-core" % "0.12.0-incubating" % "provided",
- "org.apache.spark" %% "spark-core" % sys.env.getOrElse("PIO_SPARK_VERSION", "1.6.3")
% "provided",
- "org.apache.spark" %% "spark-mllib" % sys.env.getOrElse("PIO_SPARK_VERSION", "1.6.3")
% "provided")
+ "org.apache.predictionio" %% "apache-predictionio-core" % "0.13.0-SNAPSHOT" % "provided",
+ "org.apache.spark" %% "spark-core" % sys.env.getOrElse("PIO_SPARK_VERSION", "2.1.1")
% "provided",
+ "org.apache.spark" %% "spark-mllib" % sys.env.getOrElse("PIO_SPARK_VERSION", "2.1.1")
% "provided")
|