From 328d026ee3c37390f27079d42ffd5317a10f4787 Mon Sep 17 00:00:00 2001 From: kenji yoshida <6b656e6a69@gmail.com> Date: Mon, 7 Oct 2024 11:50:24 +0900 Subject: [PATCH] avoid deprecated java.net.URL constructor (#521) --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index d710900..bb82ce0 100755 --- a/build.sbt +++ b/build.sbt @@ -34,7 +34,7 @@ ThisBuild / scalaVersion := versions.scala lazy val buildSettings: Seq[Setting[_]] = Seq( organization := "org.xerial.sbt", organizationName := "Xerial project", - organizationHomepage := Some(new URL("http://xerial.org/")), + organizationHomepage := Some(url("http://xerial.org/")), description := "A sbt plugin for publishing Scala/Java projects to the Maven Central through Sonatype Nexus REST API", Test / publishArtifact := false, sbtPlugin := true,