We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 949baa9 commit 0ce0c79Copy full SHA for 0ce0c79
build.mill
@@ -39,12 +39,7 @@ trait Common extends CrossScalaModule with PublishModule with ScalafixModule{
39
object scalasql extends Cross[ScalaSql](scalaVersions)
40
trait ScalaSql extends Common{ common =>
41
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."))(
+ def ivyDeps = Agg.empty[Dep] ++ Option.when(scalaVersion().startsWith("2."))(
48
ivy"org.scala-lang:scala-reflect:${scalaVersion()}"
49
)
50
0 commit comments