Skip to content

Commit

Permalink
Use com.github.plokhotnyuk.jsoniter_scala instead of `jsoniter.scal…
Browse files Browse the repository at this point in the history
…a` for automatic module name
  • Loading branch information
plokhotnyuk committed Sep 25, 2024
1 parent f0dd947 commit 7180c2d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ lazy val noPublishSettings = Seq(
)

lazy val publishSettings = Seq(
packageOptions += Package.ManifestAttributes("Automatic-Module-Name" -> moduleName.value.replace("-", ".")),
packageOptions += Package.ManifestAttributes("Automatic-Module-Name" ->
moduleName.value.replace("jsoniter-scala", "com.github.plokhotnyuk.jsoniter_scala").replace('-', '.')),
mimaCheckDirection := {
def isPatch: Boolean = {
val Array(newMajor, newMinor, _) = version.value.split('.')
Expand Down

0 comments on commit 7180c2d

Please sign in to comment.