filter out launcher-interface

This commit is contained in:
Eugene Yokota 2025-05-25 18:50:06 -04:00
parent 4adb149e96
commit ee4c51c946
1 changed files with 3 additions and 2 deletions

View File

@ -18,7 +18,9 @@ lazy val root = (project in file("."))
// Calling "distinct" as there are different entries for sources and javadoc classifiers with same module
val moduleIds = moduleReports.map(_.module).distinct
val moduleIdsShort = moduleIds.map(m => s"${m.organization}:${m.name}")
val moduleIdsShort = moduleIds
.filter(m => m.name != "launcher-interface") // I get different result locally
.map(m => s"${m.organization}:${m.name}")
val expectedModuleIds = Seq(
"com.eed3si9n:gigahorse-apache-http_3",
@ -66,7 +68,6 @@ lazy val root = (project in file("."))
"org.scala-sbt.jline:jline",
"org.scala-sbt:compiler-interface",
"org.scala-sbt:io_3",
// "org.scala-sbt:launcher-interface",
"org.scala-sbt:sbinary_3",
"org.scala-sbt:template-resolver",
"org.scala-sbt:test-interface",