This is an automated email from the ASF dual-hosted git repository.
raboof pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pekko-http.git
The following commit(s) were added to refs/heads/main by this push:
new 9490898af Refactor global settings (#1169)
9490898af is described below
commit 9490898af319a4081bbb07e8549a3aa8c6d4dcdc
Author: PJ Fanning <[email protected]>
AuthorDate: Sun Jul 19 00:47:01 2026 +0100
Refactor global settings (#1169)
---
build.sbt | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/build.sbt b/build.sbt
index 10ea70429..ae7b11b3e 100644
--- a/build.sbt
+++ b/build.sbt
@@ -48,14 +48,14 @@ inThisBuild(Def.settings(
Tests.Argument(TestFrameworks.ScalaTest, "-oDF")),
Dependencies.Versions,
shellPrompt := { s => Project.extract(s).currentProject.id + " > " },
- concurrentRestrictions in Global += Tags.limit(Tags.Test, 1),
- onLoad in Global := {
+ Global / concurrentRestrictions += Tags.limit(Tags.Test, 1),
+ Global / onLoad := {
sLog.value.info(
s"Building Pekko HTTP ${version.value} against Pekko
${PekkoCoreDependency.version} on Scala ${
(httpCore /
scalaVersion).value
}")
- (onLoad in Global).value
+ (Global / onLoad).value
},
projectInfoVersion := (if (isSnapshot.value) "snapshot" else version.value),
versionScheme := Some(VersionScheme.SemVerSpec)))
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]