Skip to content

Commit

Permalink
Attempt to fix publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
svroonland committed Jul 17, 2024
1 parent 56cfaf1 commit 6b945f5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 13 deletions.
17 changes: 6 additions & 11 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
import org.scalafmt.sbt.ScalafmtPlugin.autoImport.scalafmtOnCompile
import org.typelevel.scalacoptions.ScalacOptions
import xerial.sbt.Sonatype.sonatypeCentralHost

ThisBuild / sonatypeCredentialHost := sonatypeCentralHost
ThisBuild / sonatypeRepository := "https://oss.sonatype.org/service/local"

import sbt.Keys.resolvers
val mainScala = "2.13.14"
Expand All @@ -24,22 +20,21 @@ lazy val commonJsSettings = Seq(

inThisBuild(
List(
organization := "nl.vroste",
homepage := Some(url("https://github.com/svroonland/rezilience")),
licenses := List("Apache-2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0")),
developers := List(
organization := "nl.vroste",
homepage := Some(url("https://github.com/svroonland/rezilience")),
licenses := List("Apache-2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0")),
developers := List(
Developer(
"svroonland",
"Vroste",
"[email protected]",
url("https://github.com/svroonland")
)
),
scmInfo := Some(
scmInfo := Some(
ScmInfo(url("https://github.com/svroonland/rezilience/"), "scm:git:[email protected]:svroonland/rezilience.git")
),
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
sonatypeRepository := "https://oss.sonatype.org/service/local"
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
)
)

Expand Down
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ addSbtPlugin("io.shiftleft" % "sbt-ci-release-early" % "2.0.46")
addSbtPlugin("com.47deg" % "sbt-microsites" % "1.4.4")
addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")

addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12+38-6b30fb12-SNAPSHOT")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1")
addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.0.1")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.11.0")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.21")

0 comments on commit 6b945f5

Please sign in to comment.