Skip to content

Commit 6f27f07

Browse files
authored
Fix Simulacrum exclusion in POM (#3430)
1 parent c067cac commit 6f27f07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ lazy val simulacrumSettings = Seq(
8787
case e: xml.Elem
8888
if e.label == "dependency" &&
8989
e.child.exists(child => child.label == "groupId" && child.text == "org.typelevel") &&
90-
e.child.exists(child => child.label == "artifactId" && child.text.startsWith("simulacrum_")) =>
90+
e.child.exists(child => child.label == "artifactId" && child.text.startsWith("simulacrum")) =>
9191
Nil
9292
case _ => Seq(node)
9393
}

0 commit comments

Comments
 (0)