Skip to content

Commit 7653738

Browse files
authored
Fix deprecated tlSonatypeUseLegacyHost setting (#129)
1 parent a1f0bcb commit 7653738

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

build.sbt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@ val username = "RustedBones"
33
val repo = "pekko-http-metrics"
44
val githubUrl = s"https://github.com/$username/$repo"
55

6-
ThisBuild / tlBaseVersion := "1.0"
7-
ThisBuild / organization := "fr.davit"
8-
ThisBuild / organizationName := "Michel Davit"
9-
ThisBuild / startYear := Some(2019)
10-
ThisBuild / licenses := Seq(License.Apache2)
11-
ThisBuild / homepage := Some(url(githubUrl))
12-
ThisBuild / scmInfo := Some(ScmInfo(url(githubUrl), s"[email protected]:$username/$repo.git"))
13-
ThisBuild / developers := List(
6+
ThisBuild / tlBaseVersion := "1.0"
7+
ThisBuild / organization := "fr.davit"
8+
ThisBuild / organizationName := "Michel Davit"
9+
ThisBuild / startYear := Some(2019)
10+
ThisBuild / licenses := Seq(License.Apache2)
11+
ThisBuild / homepage := Some(url(githubUrl))
12+
ThisBuild / scmInfo := Some(ScmInfo(url(githubUrl), s"[email protected]:$username/$repo.git"))
13+
ThisBuild / sonatypeCredentialHost := xerial.sbt.Sonatype.sonatypeLegacy
14+
ThisBuild / developers := List(
1415
Developer(
1516
id = s"$username",
1617
name = "Michel Davit",
@@ -36,9 +37,8 @@ ThisBuild / githubWorkflowTargetBranches := Seq("main")
3637
ThisBuild / githubWorkflowJavaVersions := Seq(java21, java17, java11)
3738

3839
// build
39-
ThisBuild / tlFatalWarnings := true
40-
ThisBuild / tlJdkRelease := Some(8)
41-
ThisBuild / tlSonatypeUseLegacyHost := true
40+
ThisBuild / tlFatalWarnings := true
41+
ThisBuild / tlJdkRelease := Some(8)
4242

4343
// mima
4444
ThisBuild / mimaBinaryIssueFilters ++= Seq()

0 commit comments

Comments
 (0)