Fix artifacts filter

This commit is contained in:
Naoki Takezoe
2017-11-29 03:41:30 +09:00
parent c4bea091fe
commit e306303cc8

View File

@@ -101,7 +101,7 @@ javaOptions in Jetty ++= Option(System.getenv().get("JREBEL")).toSeq.flatMap { p
// Exclude a war file from published artifacts // Exclude a war file from published artifacts
signedArtifacts := { signedArtifacts := {
packagedArtifacts.value.filterNot { case (artifact, file) => file.getName.endsWith(".war") } signedArtifacts.value.filterNot { case (_, file) => file.getName.endsWith(".war") || file.getName.endsWith(".war.asc" }
} }
// Create executable war file // Create executable war file