Skip to content

Commit

Permalink
Merge branch 'main' into update/aws
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-butcher authored Jan 7, 2025
2 parents 3bc0d7a + c481797 commit 18b8525
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions project/Common.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import xerial.sbt.Sonatype.autoImport.{sonatypeCredentialHost, sonatypePublishTo

object Common {
def createSettings(projectVersion: String): Seq[Def.Setting[_]] = Seq(
scalaVersion := "2.12.19",
scalaVersion := "2.12.20",
organization := "org.wellcomecollection",
homepage := Some(url("https://github.com/wellcomecollection/scala-libs")),
scmInfo := Some(
Expand Down Expand Up @@ -36,17 +36,17 @@ object Common {
"-feature",
"-language:postfixOps"
),
parallelExecution in Test := false,
Test / parallelExecution := false,
publishMavenStyle := true,
credentials += Credentials(Path.userHome / ".sbt" / "sonatype.credentials"),
sonatypeCredentialHost := "central.sonatype.com",
sonatypeRepository := "https://central.sonatype.com/service/local",
licenses := Seq("MIT" -> url("https://github.com/wellcomecollection/scala-libs/blob/main/LICENSE")),
publishTo := sonatypePublishToBundle.value,
publishArtifact in Test := true,
Test / publishArtifact := true,
// Don't build scaladocs
// https://www.scala-sbt.org/sbt-native-packager/formats/universal.html#skip-packagedoc-task-on-stage
mappings in (Compile, packageDoc) := Nil,
Compile / packageDoc / mappings := Nil,
version := projectVersion
)

Expand Down

0 comments on commit 18b8525

Please sign in to comment.