Skip to content

Commit

Permalink
fix(snapi-parser)(build): misc (#325)
Browse files Browse the repository at this point in the history
When publishing a release version we do `publishSigned` so this sbt task
needs to follow the same flow as `publish` and `publishLocal`
  • Loading branch information
datYori authored Jan 15, 2024
1 parent 07083d8 commit 9843695
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions snapi-parser/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
publish := (publish dependsOn Def.sequential(outputVersion, generateParser, publishM2)).value
publishSigned := (publishSigned dependsOn Def.sequential(outputVersion, generateParser, publishM2)).value

0 comments on commit 9843695

Please sign in to comment.