Skip to content

Commit 72e83ac

Browse files
committed
Add scmInfo and versionScheme for Sonatype Central, v2.2.4
1 parent d1b664e commit 72e83ac

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

build.sbt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ lazy val akkaVersion = "2.8.8"
66

77
ThisBuild / semanticdbVersion := "4.12.3"
88
ThisBuild / sonatypeCredentialHost := sonatypeCentralHost
9+
ThisBuild / versionScheme := Some("early-semver")
910

1011
lazy val root = (project in file(".")).settings(
1112
organization := "com.clever-cloud",
1213
scalaVersion := "2.13.18",
13-
version := "2.2.3",
14+
version := "2.2.4",
1415
crossScalaVersions := Seq(scalaVersion.value, "3.7.4"),
1516
name := "testcontainers-scala-warp10",
1617
licenses := List("MIT" -> new URI("https://mit-license.org/").toURL()),
@@ -35,6 +36,12 @@ lazy val root = (project in file(".")).settings(
3536
developers := List(
3637
Developer("judu", "Julien Durillon", "julien.durillon@clever-cloud.com", url("https://github.com/judu"))
3738
),
39+
scmInfo := Some(
40+
ScmInfo(
41+
url("https://github.com/CleverCloud/testcontainers-scala-warp10"),
42+
"scm:git@github.com:CleverCloud/testcontainers-scala-warp10.git"
43+
)
44+
),
3845
Test / fork := true,
3946
usePgpKeyHex("A7B8F38C536F1DF2")
4047
)

0 commit comments

Comments
 (0)