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 ca3bb4ccf build: remove stale scalafix dependency from docs module
(#1113)
ca3bb4ccf is described below
commit ca3bb4ccfb02a02ca253538d2f3e3f0d3a287eae
Author: He-Pin(kerr) <[email protected]>
AuthorDate: Wed Jul 1 06:46:23 2026 +0800
build: remove stale scalafix dependency from docs module (#1113)
Motivation:
`sbt clean` fails with `IllegalArgumentException: Cannot add dependency
... to configuration 'scalafix' ... because this configuration doesn't
exist!` because the `docs` module disables `ScalafixPlugin` but still
declares `httpScalafixRules % ScalafixConfig` in `.dependsOn(...)`.
Modification:
Remove the unused `httpScalafixRules % ScalafixConfig` dependency from
the `docs` module. The docs module does not use scalafix rules.
Result:
`sbt clean` no longer fails on the docs module due to a missing Ivy
configuration.
Tests:
Not run - build configuration only
References:
Fixes #925
---
build.sbt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.sbt b/build.sbt
index 9631d8d3c..b40df8b3c 100644
--- a/build.sbt
+++ b/build.sbt
@@ -398,7 +398,7 @@ lazy val docs = project("docs")
.addPekkoModuleDependency("pekko-actor-testkit-typed", "provided",
PekkoCoreDependency.default)
.dependsOn(
httpCore, http, httpXml, http2Tests, httpMarshallersJava,
httpMarshallersScala, httpCaching, httpCors,
- httpTests % "compile;test->test", httpTestkit % "compile;test->test",
httpScalafixRules % ScalafixConfig)
+ httpTests % "compile;test->test", httpTestkit % "compile;test->test")
.settings(Dependencies.docs)
.settings(
name := "pekko-http-docs",
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]