Skip to content

Commit

Permalink
sonatype publishing fix for sbt plugin (#271)
Browse files Browse the repository at this point in the history
the default sbt naming convention for plugins does not conform to the
maven specification - see sbt/sbt#3410
  • Loading branch information
mpollmeier authored Nov 5, 2024
1 parent c66924c commit 4309489
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,9 @@ lazy val sbtPlugin = project
scalaVersion := scala2_12,
scalacOptions := scalacOptionsFor2_12,
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2"),
// the default sbt naming convention for plugins does not conform to the
// maven specification - see https://github.com/sbt/sbt/issues/3410
sbtPluginPublishLegacyMavenStyle := false,
)

lazy val odbConvert = project
Expand Down

0 comments on commit 4309489

Please sign in to comment.