Repository: predictionio Updated Branches: refs/heads/feature/PIO-61 [created] f2e4e3251
[PIO-61] Spark 2.3 support Project: http://git-wip-us.apache.org/repos/asf/predictionio/repo Commit: http://git-wip-us.apache.org/repos/asf/predictionio/commit/f2e4e325 Tree: http://git-wip-us.apache.org/repos/asf/predictionio/tree/f2e4e325 Diff: http://git-wip-us.apache.org/repos/asf/predictionio/diff/f2e4e325 Branch: refs/heads/feature/PIO-61 Commit: f2e4e32514719979034b86079a04048634dc44d5 Parents: a18475a Author: Donald Szeto <[email protected]> Authored: Thu Aug 30 14:46:18 2018 -0700 Committer: Donald Szeto <[email protected]> Committed: Thu Aug 30 14:46:18 2018 -0700 ---------------------------------------------------------------------- .travis.yml | 24 ++++++++++++++++++++++++ build.sbt | 4 ++++ 2 files changed, 28 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/predictionio/blob/f2e4e325/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml index d2a8d2f..d404de2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -132,6 +132,30 @@ env: PIO_SPARK_VERSION=2.2.0 PIO_ELASTICSEARCH_VERSION=5.5.2 + - BUILD_TYPE=Unit + METADATA_REP=PGSQL EVENTDATA_REP=PGSQL MODELDATA_REP=PGSQL + PIO_SCALA_VERSION=2.11.12 + PIO_SPARK_VERSION=2.3.1 + - BUILD_TYPE=Integration + METADATA_REP=PGSQL EVENTDATA_REP=PGSQL MODELDATA_REP=PGSQL + PIO_SCALA_VERSION=2.11.12 + PIO_SPARK_VERSION=2.3.1 + - BUILD_TYPE=Integration + METADATA_REP=ELASTICSEARCH EVENTDATA_REP=HBASE MODELDATA_REP=LOCALFS + PIO_SCALA_VERSION=2.11.12 + PIO_SPARK_VERSION=2.3.1 + PIO_ELASTICSEARCH_VERSION=1.7.3 + - BUILD_TYPE=Integration + METADATA_REP=ELASTICSEARCH EVENTDATA_REP=PGSQL MODELDATA_REP=HDFS + PIO_SCALA_VERSION=2.11.12 + PIO_SPARK_VERSION=2.3.1 + PIO_ELASTICSEARCH_VERSION=5.5.2 + - BUILD_TYPE=Integration + METADATA_REP=ELASTICSEARCH EVENTDATA_REP=ELASTICSEARCH MODELDATA_REP=S3 + PIO_SCALA_VERSION=2.11.12 + PIO_SPARK_VERSION=2.3.1 + PIO_ELASTICSEARCH_VERSION=5.5.2 + - BUILD_TYPE=LicenseCheck before_install: http://git-wip-us.apache.org/repos/asf/predictionio/blob/f2e4e325/build.sbt ---------------------------------------------------------------------- diff --git a/build.sbt b/build.sbt index 0243610..c753f76 100644 --- a/build.sbt +++ b/build.sbt @@ -46,6 +46,10 @@ lazy val scalaSparkDepsVersion = Map( "2.2" -> Map( "akka" -> "2.4.17", "hadoop" -> "2.7.3", + "json4s" -> "3.2.11"), + "2.3" -> Map( + "akka" -> "2.4.17", + "hadoop" -> "2.7.3", "json4s" -> "3.2.11"))) name := "apache-predictionio-parent"
