You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pekko.apache.org by jr...@apache.org on 2023/02/14 13:41:11 UTC

[incubator-pekko-http] branch main updated: disable publishing of http2-support module (#52)

This is an automated email from the ASF dual-hosted git repository.

jrudolph pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-pekko-http.git


The following commit(s) were added to refs/heads/main by this push:
     new 4a54d72a5 disable publishing of http2-support module (#52)
4a54d72a5 is described below

commit 4a54d72a521ad0327c20db7d59a429e94518735f
Author: Johannes Rudolph <jo...@gmail.com>
AuthorDate: Tue Feb 14 14:41:05 2023 +0100

    disable publishing of http2-support module (#52)
    
    This used to carry the http2 implementation but we moved the implementation
    to http-core a long time ago. We continued publishing to avoid people missing
    the module but it doesn't seem to make sense to keep publishing for pekko-http.
---
 build.sbt | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/build.sbt b/build.sbt
index 057e2eeb5..7d9943a7f 100644
--- a/build.sbt
+++ b/build.sbt
@@ -173,7 +173,6 @@ def gustavDir(kind: String) = Def.task {
 lazy val http2Support = project("http2-support")
   .settings(commonSettings)
   .settings(AutomaticModuleName.settings("pekko.http.http2"))
-  .settings(MetaInfLicenseNoticeCopy.settings)
   .dependsOn(httpCore, httpTestkit % "test", httpCore % "test->test")
   .addPekkoModuleDependency("pekko-stream", "provided")
   .addPekkoModuleDependency("pekko-stream-testkit", "test")
@@ -208,8 +207,7 @@ lazy val http2Support = project("http2-support")
         Seq(h2spec)
       })
   }
-  .enablePlugins(BootstrapGenjavadoc)
-  .enablePlugins(ReproducibleBuildsPlugin)
+  .enablePlugins(NoPublish) // only contains tests these days
   .disablePlugins(MimaPlugin) // experimental module still
 
 lazy val httpTestkit = project("http-testkit")


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pekko.apache.org
For additional commands, e-mail: commits-help@pekko.apache.org