aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Parra <diegolparra@gmail.com>2018-07-04 12:14:09 -0300
committerIvan Topolnjak <ivantopo@gmail.com>2018-07-04 17:14:09 +0200
commit794fbf02664ac8c31072d8b955d897901f1f22e0 (patch)
tree6986707509941ef12d22f51c6e81471d87c844e8
parent95470fa53757177115df4b3c435ee0c5d387a237 (diff)
downloadKamon-794fbf02664ac8c31072d8b955d897901f1f22e0.tar.gz
Kamon-794fbf02664ac8c31072d8b955d897901f1f22e0.tar.bz2
Kamon-794fbf02664ac8c31072d8b955d897901f1f22e0.zip
= core: exclude com.lihaoyi.fansi dependency (#540)
* = core: exclude com.lihaoyi.fansi dependency
-rw-r--r--build.sbt5
1 files changed, 2 insertions, 3 deletions
diff --git a/build.sbt b/build.sbt
index 5c2cc104..3d77510f 100644
--- a/build.sbt
+++ b/build.sbt
@@ -1,5 +1,5 @@
/* =========================================================================================
- * Copyright © 2013-2017 the kamon project <http://kamon.io/>
+ * Copyright © 2013-2018 the kamon project <http://kamon.io/>
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of the License at
@@ -47,8 +47,7 @@ lazy val core = (project in file("kamon-core"))
libraryDependencies ++= Seq(
"com.typesafe" % "config" % "1.3.1",
"org.slf4j" % "slf4j-api" % "1.7.25",
- "org.hdrhistogram" % "HdrHistogram" % "2.1.9",
- "com.lihaoyi" %% "fansi" % "0.2.4"
+ "org.hdrhistogram" % "HdrHistogram" % "2.1.9"
)
)