Skip to content

Commit

Permalink
Cleanup duplicate dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
lefou committed Oct 26, 2024
1 parent 8c646cb commit 08e9333
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ object Deps {
val jnaPlatform = ivy"net.java.dev.jna:jna-platform:${jnaVersion}"

val junitInterface = ivy"com.github.sbt:junit-interface:0.13.3"
val commonsIO = ivy"commons-io:commons-io:2.17.0"
val commonsIo = ivy"commons-io:commons-io:2.17.0"
val log4j2Core = ivy"org.apache.logging.log4j:log4j-core:2.24.1"
val osLib = ivy"com.lihaoyi::os-lib:0.11.3"
val pprint = ivy"com.lihaoyi::pprint:0.9.0"
Expand Down Expand Up @@ -225,9 +225,9 @@ object Deps {
}

/** Used to manage transitive versions. */
val transitiveDeps = Seq(
lazy val transitiveDeps = Seq(
ivy"org.apache.ant:ant:1.10.15",
ivy"commons-io:commons-io:2.16.1",
Deps.commonsIo,
ivy"com.google.code.gson:gson:2.11.0",
ivy"com.google.protobuf:protobuf-java:4.28.2",
ivy"com.google.guava:guava:33.3.1-jre",
Expand Down
2 changes: 1 addition & 1 deletion main/package.mill
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ object `package` extends RootModule with build.MillStableScalaModule with BuildI
def ivyDeps = Agg(build.Deps.junixsocket, build.Deps.jline)

object test extends JavaModuleTests with TestModule.Junit4 {
def ivyDeps = Agg(build.Deps.junitInterface, build.Deps.commonsIO)
def ivyDeps = Agg(build.Deps.junitInterface, build.Deps.commonsIo)
}
}

Expand Down

0 comments on commit 08e9333

Please sign in to comment.