From d887d7d824f3c10a3425dc6ddbe203c896b9f891 Mon Sep 17 00:00:00 2001 From: Eugene Yokota Date: Sun, 8 May 2016 16:18:23 -0400 Subject: [PATCH] Fix POM settings --- project/Util.scala | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/project/Util.scala b/project/Util.scala index b84f7f099..85a88ce06 100644 --- a/project/Util.scala +++ b/project/Util.scala @@ -78,7 +78,6 @@ object Util { def srcID = "compiler-interface-src" def publishPomSettings: Seq[Setting[_]] = Seq( - publishArtifact in makePom := false, pomPostProcess := cleanPom _ ) @@ -100,7 +99,7 @@ object Util { def excludePomDependency(node: scala.xml.Node) = node \ "artifactId" exists { n => excludePomArtifact(n.text) } - def excludePomArtifact(artifactId: String) = (artifactId == "compiler-interface") || (artifactId startsWith "precompiled") + def excludePomArtifact(artifactId: String) = (artifactId startsWith "compiler-bridge") val testExclusive = tags in test += ((ExclusiveTest, 1))