Update sbt-apache-sonatype

This commit is contained in:
Matthew de Detrich 2023-02-28 18:16:15 +01:00 committed by Matthew de Detrich
parent 317cbb5250
commit c1584a4f4b
3 changed files with 1 additions and 6 deletions

View file

@ -38,7 +38,6 @@ initialize := {
initialize.value
}
PekkoBuild.buildSettings
shellPrompt := { s =>
Project.extract(s).currentProject.id + " > "
}
@ -587,7 +586,6 @@ lazy val billOfMaterials = Project("bill-of-materials", file("bill-of-materials"
.enablePlugins(BillOfMaterialsPlugin)
.disablePlugins(MimaPlugin, PekkoDisciplinePlugin)
// buildSettings and defaultSettings configure organization name, licenses, etc...
.settings(PekkoBuild.buildSettings)
.settings(PekkoBuild.defaultSettings)
.settings(
name := "pekko-bom",
@ -612,7 +610,6 @@ def pekkoModule(moduleName: String): Project =
Project(id = moduleName, base = file(moduleName))
.enablePlugins(ReproducibleBuildsPlugin)
.disablePlugins(WelcomePlugin)
.settings(PekkoBuild.buildSettings)
.settings(PekkoBuild.defaultSettings)
.settings(
name := s"pekko-$moduleName")

View file

@ -39,8 +39,6 @@ object PekkoBuild {
val parallelExecutionByDefault = false // TODO: enable this once we're sure it does not break things
lazy val buildSettings = Def.settings(organization := "org.apache.pekko")
lazy val rootSettings = Def.settings(
commands += switchVersion,
UnidocRoot.pekkoSettings,

View file

@ -20,7 +20,7 @@ addSbtPlugin("net.bzzt" % "sbt-reproducible-builds" % "0.30")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10")
addSbtPlugin("com.lightbend.sbt" % "sbt-publish-rsync" % "0.2")
addSbtPlugin("com.github.pjfanning" % "sbt-source-dist" % "0.1.5")
addSbtPlugin("org.mdedetrich" % "sbt-apache-sonatype" % "0.1.4")
addSbtPlugin("org.mdedetrich" % "sbt-apache-sonatype" % "0.1.5")
addSbtPlugin("com.github.reibitto" % "sbt-welcome" % "0.2.2")
// allow access to snapshots for pekko-sbt-paradox