Skip to content

Commit

Permalink
Remove sonatype commands that shouldn't be run in release process
Browse files Browse the repository at this point in the history
  • Loading branch information
mdedetrich authored Jul 26, 2023
1 parent 267688e commit 776b3cd
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ import com.lightbend.paradox.apidoc.ApidocPlugin.autoImport.apidocRootPackage

sourceDistName := "apache-pekko-http"
sourceDistIncubating := true

commands := commands.value.filterNot { command =>
command.nameOption.exists { name =>
name.contains("sonatypeRelease") || name.contains("sonatypeBundleRelease")
}
}

inThisBuild(Def.settings(
apiURL := {
val apiVersion = if (isSnapshot.value) "current" else version.value
Expand Down

0 comments on commit 776b3cd

Please sign in to comment.