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/09 12:29:31 UTC

[incubator-pekko-sbt-paradox] branch main updated: add coursier cache for publishing (#16)

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-sbt-paradox.git


The following commit(s) were added to refs/heads/main by this push:
     new fc6ac01  add coursier cache for publishing (#16)
fc6ac01 is described below

commit fc6ac012467eb3c20fae4b767e731856c968783a
Author: Johannes Rudolph <jo...@gmail.com>
AuthorDate: Thu Feb 9 13:29:26 2023 +0100

    add coursier cache for publishing (#16)
---
 build.sbt | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/build.sbt b/build.sbt
index 8c2e0c2..fea48d5 100644
--- a/build.sbt
+++ b/build.sbt
@@ -31,7 +31,15 @@ lazy val publishSettings = Seq(
 lazy val pekkoParadox = project
   .in(file("."))
   .settings(
-    publish / skip := true)
+    publish / skip := true,
+    initialize := {
+      val _ = initialize.value
+      import sun.util.logging.PlatformLogger
+      val logger = PlatformLogger.getLogger("sun.net.www.protocol.http.HttpURLConnection")
+      val oldLevel = logger.level()
+      println(s"Adjusting logging level from $oldLevel")
+      logger.setLevel(sun.util.logging.PlatformLogger.Level.FINEST)
+    })
   .aggregate(pekkoTheme, pekkoPlugin)
 
 lazy val pekkoTheme = project


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