From e5a6a609e3ac12fee311732da2034d0d83434f3f Mon Sep 17 00:00:00 2001 From: Alexandre Archambault Date: Tue, 21 Feb 2017 15:57:41 +0100 Subject: [PATCH] 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?) --- build.sbt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 537114a13..5ede4bd5a 100644 --- a/build.sbt +++ b/build.sbt @@ -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