Skip to content

Commit 213a947

Browse files
committed
Merge pull request vert-x#49 from Zwergal/master
removed excluding of slf4j jar which causes noClassDefFound error
2 parents 989e56d + 90ac3fb commit 213a947

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

project/VertxScalaBuild.scala

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,11 @@ object Dependencies {
6464
"io.vertx" %% "lang-scala" % vertxLangScalaVersion % "provided",
6565
"com.github.mauricio" %% "postgresql-async" % asyncDriverVersion % "compile" excludeAll(
6666
ExclusionRule(organization = "org.scala-lang"),
67-
ExclusionRule(organization = "io.netty"),
68-
ExclusionRule(organization = "org.slf4j")
67+
ExclusionRule(organization = "io.netty")
6968
),
7069
"com.github.mauricio" %% "mysql-async" % asyncDriverVersion % "compile" excludeAll(
7170
ExclusionRule(organization = "org.scala-lang"),
72-
ExclusionRule(organization = "io.netty"),
73-
ExclusionRule(organization = "org.slf4j")
71+
ExclusionRule(organization = "io.netty")
7472
)
7573
) ::: test
7674

0 commit comments

Comments
 (0)