From 984369537d7242bca3df34680bfb25fa40618b84 Mon Sep 17 00:00:00 2001 From: Yann Bouzonie Date: Mon, 15 Jan 2024 16:28:46 +0100 Subject: [PATCH] fix(snapi-parser)(build): misc (#325) When publishing a release version we do `publishSigned` so this sbt task needs to follow the same flow as `publish` and `publishLocal` --- snapi-parser/build.sbt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/snapi-parser/build.sbt b/snapi-parser/build.sbt index 8489bdeb3..eee4e7a24 100644 --- a/snapi-parser/build.sbt +++ b/snapi-parser/build.sbt @@ -14,7 +14,7 @@ sonatypeRepository := "https://s01.oss.sonatype.org/service/local" sonatypeProfileName := "com.raw-labs" -val licenseHeader = s"""Copyright ${Year.now.getValue} RAW Labs S.A. +val licenseHeader = """Copyright 2023 RAW Labs S.A. Use of this software is governed by the Business Source License included in the file licenses/BSL.txt. @@ -189,4 +189,5 @@ generateParser := { Compile / compile := (Compile / compile).dependsOn(generateParser).value publishLocal := (publishLocal dependsOn Def.sequential(outputVersion, generateParser, publishM2)).value -publish := (publish dependsOn Def.sequential(outputVersion, generateParser, publishM2)).value \ No newline at end of file +publish := (publish dependsOn Def.sequential(outputVersion, generateParser, publishM2)).value +publishSigned := (publishSigned dependsOn Def.sequential(outputVersion, generateParser, publishM2)).value