@@ -39,9 +39,6 @@ addCommandAlias(
3939
4040val isScala213 = settingKey[Boolean ](" Checks if the current Scala version is 2.13" )
4141
42- Global / sonatypeCredentialHost := " s01.oss.sonatype.org"
43- Global / sonatypeRepository := " https://s01.oss.sonatype.org/service/local"
44-
4542inThisBuild(
4643 List (
4744 crossScalaVersions := supportedScalaVersions,
@@ -90,7 +87,7 @@ inThisBuild(
9087 // This needs to be set otherwise the GitHub workflow plugin gets confused about which
9188 // version to use for the publish job.
9289 scalaVersion := scala212,
93- versionPolicyFirstVersion := Some (" 0.1.7 " ),
90+ versionPolicyFirstVersion := Some (" 0.1.8 " ),
9491 versionPolicyIntention := Compatibility .BinaryAndSourceCompatible ,
9592 versionScheme := Some (" early-semver" )
9693 )
@@ -126,7 +123,10 @@ lazy val root = (project in file("."))
126123 .settings(metaProjectSettings)
127124 .settings(
128125 crossScalaVersions := supportedScalaVersions,
129- name := " scala2plantuml"
126+ name := " scala2plantuml" ,
127+ // Workaround for https://github.com/olafurpg/sbt-ci-release/issues/181
128+ sonatypeCredentialHost := " s01.oss.sonatype.org" ,
129+ sonatypeRepository := " https://s01.oss.sonatype.org/service/local"
130130 )
131131
132132lazy val core = project
0 commit comments