mirror of https://github.com/sbt/sbt.git
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:
parent
36ba4b6252
commit
e5a6a609e3
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue