Skip to content

Commit

Permalink
Fix/akkarevert (#21)
Browse files Browse the repository at this point in the history
* fix

* fix
  • Loading branch information
mleida-stratio committed Mar 17, 2021
1 parent c9fd740 commit 3cb4a74
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ IS_SNAPSHOT?=true
SNAPSHOT:=-SNAPSHOT
endif

APACHE_SPARK_VERSION?=3.0.1
APACHE_SPARK_VERSION?=3.0.0
SCALA_VERSION?=2.12
IMAGE?=jupyter/all-spark-notebook:latest
EXAMPLE_IMAGE?=apache/toree-examples
Expand Down
1 change: 1 addition & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Dependencies.sparkVersion in ThisBuild := {
val envVar = "APACHE_SPARK_VERSION"
val defaultVersion = "3.0.1"


Properties.envOrNone(envVar) match {
case None =>
sLog.value.info(s"Using default Apache Spark version $defaultVersion!")
Expand Down
7 changes: 4 additions & 3 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ object Dependencies {

// Libraries

val akkaActor = "com.typesafe.akka" %% "akka-actor" % "2.6.12" // Apache v2
val akkaSlf4j = "com.typesafe.akka" %% "akka-slf4j" % "2.6.12" // Apache v2
val akkaTestkit = "com.typesafe.akka" %% "akka-testkit" % "2.6.12" // Apache v2
val akkaActor = "com.typesafe.akka" %% "akka-actor" % "2.5.31" // Apache v2
val akkaSlf4j = "com.typesafe.akka" %% "akka-slf4j" % "2.5.31" // Apache v2
val akkaTestkit = "com.typesafe.akka" %% "akka-testkit" % "2.5.31" // Apache v2


val clapper = "org.clapper" %% "classutil" % "1.5.1" // BSD 3-clause license, used for detecting plugins

Expand Down

0 comments on commit 3cb4a74

Please sign in to comment.