From 90ac3fb97f65b91363f8cb820d0d0a59f607da9f Mon Sep 17 00:00:00 2001 From: Max Stemplinger Date: Thu, 25 Sep 2014 10:44:58 +0200 Subject: [PATCH] removed excluding of slf4j jar which causes noClassDefFound error --- project/VertxScalaBuild.scala | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/project/VertxScalaBuild.scala b/project/VertxScalaBuild.scala index d916542..8b164a9 100644 --- a/project/VertxScalaBuild.scala +++ b/project/VertxScalaBuild.scala @@ -64,13 +64,11 @@ object Dependencies { "io.vertx" %% "lang-scala" % vertxLangScalaVersion % "provided", "com.github.mauricio" %% "postgresql-async" % asyncDriverVersion % "compile" excludeAll( ExclusionRule(organization = "org.scala-lang"), - ExclusionRule(organization = "io.netty"), - ExclusionRule(organization = "org.slf4j") + ExclusionRule(organization = "io.netty") ), "com.github.mauricio" %% "mysql-async" % asyncDriverVersion % "compile" excludeAll( ExclusionRule(organization = "org.scala-lang"), - ExclusionRule(organization = "io.netty"), - ExclusionRule(organization = "org.slf4j") + ExclusionRule(organization = "io.netty") ) ) ::: test