Skip to content

Commit 0ce0c79

Browse files
authored
Remove log4j dependency (#75)
Fixes #74
1 parent 949baa9 commit 0ce0c79

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

build.mill

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,7 @@ trait Common extends CrossScalaModule with PublishModule with ScalafixModule{
3939
object scalasql extends Cross[ScalaSql](scalaVersions)
4040
trait ScalaSql extends Common{ common =>
4141
def moduleDeps = Seq(query, operations)
42-
def ivyDeps = Agg(
43-
ivy"org.apache.logging.log4j:log4j-api:2.20.0",
44-
ivy"org.apache.logging.log4j:log4j-core:2.20.0",
45-
ivy"org.apache.logging.log4j:log4j-slf4j-impl:2.20.0",
46-
47-
) ++ Option.when(scalaVersion().startsWith("2."))(
42+
def ivyDeps = Agg.empty[Dep] ++ Option.when(scalaVersion().startsWith("2."))(
4843
ivy"org.scala-lang:scala-reflect:${scalaVersion()}"
4944
)
5045

0 commit comments

Comments
 (0)