Fix POM settings

This commit is contained in:
Eugene Yokota 2016-05-08 16:18:23 -04:00
parent 426f43f618
commit d887d7d824
1 changed files with 1 additions and 2 deletions

View File

@ -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))