Skip to content

Commit

Permalink
internal: Avoid deprecated java.net.URL constructor (#853)
Browse files Browse the repository at this point in the history
avoid deprecated java.net.URL constructor
  • Loading branch information
xuwei-k authored Nov 4, 2024
1 parent b6bae5b commit ba0c44f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ThisBuild / dynverSeparator := "-"
val buildSettings = Seq[Setting[_]](
organization := "org.msgpack",
organizationName := "MessagePack",
organizationHomepage := Some(new URL("http://msgpack.org/")),
organizationHomepage := Some(url("http://msgpack.org/")),
description := "MessagePack for Java",
scalaVersion := "2.13.12",
Test / logBuffered := false,
Expand Down

0 comments on commit ba0c44f

Please sign in to comment.