Exclude pom from pack distributions

Upcoming sbt-coursier includes this in the update report, and these
aren't ignored by sbt-pack by default (yet?)
This commit is contained in:
Alexandre Archambault 2017-02-21 15:57:41 +01:00
parent 36ba4b6252
commit e5a6a609e3
1 changed files with 3 additions and 1 deletions

View File

@ -206,6 +206,7 @@ lazy val cli = project
else
Seq()
},
packExcludeArtifactTypes += "pom",
resourceGenerators in Compile += packageBin.in(bootstrap).in(Compile).map { jar =>
Seq(jar)
}.taskValue,
@ -399,7 +400,8 @@ lazy val `http-server` = project
)
else
Seq()
}
},
packExcludeArtifactTypes += "pom"
)
lazy val okhttp = project