Skip to content

Commit

Permalink
Fixes for publish of non-snapshot version
Browse files Browse the repository at this point in the history
  • Loading branch information
scullxbones committed Aug 14, 2023
1 parent b821cdb commit ce14b2c
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 38 deletions.
28 changes: 21 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
publish / skip := true

val scala212V = "2.12.18"
val scala213V = "2.13.11"

Expand Down Expand Up @@ -35,17 +37,29 @@ val commonDeps = Seq(

lazy val Ci = config("ci").extend(Test)

ThisBuild / organization := "com.github.scullxbones"
ThisBuild / scalaVersion := scalaV
ThisBuild / versionScheme := Some("semver-spec")

import xerial.sbt.Sonatype._

inThisBuild(List(
organization := "com.github.scullxbones",
homepage := Some(url("https://github.com/scullxbones/pekko-persistence-mongo")),
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
sonatypeProjectHosting := Some(GitHubHosting("scullxbones", "pekko-persistence-mongo", "[email protected]")),
scalaVersion := scalaV
))
ThisBuild / sonatypeProjectHosting := Some(GitHubHosting("scullxbones", "pekko-persistence-mongo", "[email protected]"))
ThisBuild / licenses := Seq("APL2" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt"))
ThisBuild / developers := List(
Developer(
"scullxbones",
"Brian Scully",
"@scullxbones",
url("https://github.com/scullxbones/")
),
Developer(
"thjaeckle",
"Thomas Jäckle",
"@thjaeckle",
url("https://github.com/thjaeckle/")
)
)
ThisBuild / homepage := Some(url("https://github.com/scullxbones/pekko-persistence-mongo"))

val commonSettings = Seq(
scalaVersion := scalaV,
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.8.2
sbt.version=1.8.3
30 changes: 0 additions & 30 deletions sonatype.sbt

This file was deleted.

0 comments on commit ce14b2c

Please sign in to comment.