mirror of https://github.com/sbt/sbt.git
filter out launcher-interface
This commit is contained in:
parent
4adb149e96
commit
ee4c51c946
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in New Issue