Update Scala Logging to officially supported one

This commit is contained in:
Piotr Mrówczyński 2018-09-11 12:17:06 +02:00 committed by Nico Poggi
parent 6136ecea6e
commit 56f73482d7
5 changed files with 5 additions and 5 deletions

View File

@ -42,7 +42,7 @@ libraryDependencies += "org.scalatest" %% "scalatest" % "2.2.1" % "test"
libraryDependencies += "org.yaml" % "snakeyaml" % "1.17"
libraryDependencies += "com.typesafe.scala-logging" %% "scala-logging-slf4j" % "2.1.2"
libraryDependencies += "com.typesafe.scala-logging" %% "scala-logging" % "3.9.0"
resolvers += "Apache Development Snapshot Repository" at "https://repository.apache.org/content/repositories/snapshots"

View File

@ -18,7 +18,7 @@ package com.databricks.spark.sql.perf
import java.util.UUID
import com.typesafe.scalalogging.slf4j.{LazyLogging => Logging}
import com.typesafe.scalalogging.{LazyLogging => Logging}
import scala.concurrent.duration._
import scala.collection.mutable.ArrayBuffer

View File

@ -1,6 +1,6 @@
package com.databricks.spark.sql.perf.mllib
import com.typesafe.scalalogging.slf4j.{LazyLogging => Logging}
import com.typesafe.scalalogging.{LazyLogging => Logging}
import org.apache.spark.ml.attribute.{NominalAttribute, NumericAttribute}
import org.apache.spark.ml.{Estimator, PipelineStage, Transformer}
import org.apache.spark.ml.evaluation.Evaluator

View File

@ -4,7 +4,7 @@ package com.databricks.spark.sql.perf.mllib
import scala.io.Source
import scala.language.implicitConversions
import com.typesafe.scalalogging.slf4j.{LazyLogging => Logging}
import com.typesafe.scalalogging.{LazyLogging => Logging}
import org.apache.spark.sql.{DataFrame, SQLContext}
import org.apache.spark.{SparkConf, SparkContext}

View File

@ -3,7 +3,7 @@ package com.databricks.spark.sql.perf.mllib
import scala.collection.mutable.ArrayBuffer
import scala.util.control.NonFatal
import com.typesafe.scalalogging.slf4j.{LazyLogging => Logging}
import com.typesafe.scalalogging.{LazyLogging => Logging}
import org.apache.spark.ml.{Estimator, Transformer}
import org.apache.spark.sql._