Skip to content

Commit 82d5a9c

Browse files
committed
Release 2.1.2
Bump deps, fix warning
1 parent eff9304 commit 82d5a9c

File tree

1 file changed

+47
-49
lines changed

1 file changed

+47
-49
lines changed

build.sbt

Lines changed: 47 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,53 @@
11
lazy val testContainersScalaVersion = "0.41.5"
2-
lazy val testContainersWarp10Version = "1.0.7"
2+
lazy val testContainersWarp10Version = "1.0.8"
33
lazy val akkaVersion = "2.8.8"
44

5-
ThisBuild / semanticdbVersion := "4.8.14"
5+
ThisBuild / semanticdbVersion := "4.12.1"
66

77
credentials += Credentials("GnuPG Key ID", "gpg", "B11C53C05D413713BDD3660FA7B8F38C536F1DF2", "ignored")
88

9-
lazy val root = (project in file(".")).
10-
settings(
11-
organization := "com.clever-cloud",
12-
scalaVersion := "2.13.15",
13-
version := "2.1.1",
14-
crossScalaVersions := Seq(scalaVersion.value, "3.3.4", "3.6.2"),
15-
name := "testcontainers-scala-warp10",
16-
licenses := List("MIT" -> new URL("https://mit-license.org/")),
17-
homepage := Some(url("https://github.com/CleverCloud/testcontainers-scala-warp10")),
18-
resolvers += Resolver.mavenLocal,
19-
resolvers += Resolver.mavenCentral,
20-
libraryDependencies ++= Seq(
21-
"com.dimafeng" %% "testcontainers-scala-core" % testContainersScalaVersion,
22-
"com.clever-cloud" % "testcontainers-warp10" % testContainersWarp10Version,
23-
24-
"net.java.dev.jna" % "jna" % "5.12.1" % Test,
25-
"org.scalatest" %% "scalatest" % "3.2.15" % Test,
26-
("com.typesafe.akka" %% "akka-protobuf-v3" % akkaVersion % Test).cross(CrossVersion.for3Use2_13),
27-
("com.typesafe.akka" %% "akka-stream-typed" % akkaVersion % Test).cross(CrossVersion.for3Use2_13),
28-
("com.typesafe.akka" %% "akka-stream" % akkaVersion % Test).cross(CrossVersion.for3Use2_13),
29-
("com.typesafe.akka" %% "akka-actor-testkit-typed" % akkaVersion % Test).cross(CrossVersion.for3Use2_13),
30-
"com.dimafeng" %% "testcontainers-scala-scalatest" % testContainersScalaVersion % Test,
31-
"org.slf4j" % "slf4j-jdk14" % "2.0.5" % Test,
32-
("io.moia" %% "scala-http-client" % "5.2.0" % Test).cross(CrossVersion.for3Use2_13)
33-
),
34-
publishMavenStyle := true,
35-
Test / publishArtifact := false,
36-
pomIncludeRepository := { _ => false },
37-
ThisBuild / publishTo := {
38-
val nexus = "https://s01.oss.sonatype.org/"
39-
if(isSnapshot.value)
40-
Some("snapshots" at nexus + "content/repositories/snapshots")
41-
else
42-
Some("releases" at nexus + "service/local/staging/deploy/maven2")
43-
},
44-
scmInfo := Some(
45-
ScmInfo(
46-
url("https://github.com/CleverCloud/testcontainers-scala-warp10"),
47-
"scm:git:git@github.com:CleverCloud/testcontainers-scala-warp10"
48-
)
49-
),
50-
developers := List(
51-
Developer("judu", "Julien Durillon", "julien.durillon@clever-cloud.com", url("https://github.com/judu"))
52-
),
53-
Test / fork := true,
54-
usePgpKeyHex("A7B8F38C536F1DF2"),
55-
)
9+
lazy val root = (project in file(".")).settings(
10+
organization := "com.clever-cloud",
11+
scalaVersion := "2.13.15",
12+
version := "2.1.2",
13+
crossScalaVersions := Seq(scalaVersion.value, "3.6.2"),
14+
name := "testcontainers-scala-warp10",
15+
licenses := List("MIT" -> new URI("https://mit-license.org/").toURL()),
16+
homepage := Some(url("https://github.com/CleverCloud/testcontainers-scala-warp10")),
17+
resolvers += Resolver.mavenLocal,
18+
resolvers += Resolver.mavenCentral,
19+
libraryDependencies ++= Seq(
20+
"com.dimafeng" %% "testcontainers-scala-core" % testContainersScalaVersion,
21+
"com.clever-cloud" % "testcontainers-warp10" % testContainersWarp10Version,
22+
"net.java.dev.jna" % "jna" % "5.15.0" % Test,
23+
"org.scalatest" %% "scalatest" % "3.2.19" % Test,
24+
("com.typesafe.akka" %% "akka-protobuf-v3" % akkaVersion % Test).cross(CrossVersion.for3Use2_13),
25+
("com.typesafe.akka" %% "akka-stream-typed" % akkaVersion % Test).cross(CrossVersion.for3Use2_13),
26+
("com.typesafe.akka" %% "akka-stream" % akkaVersion % Test).cross(CrossVersion.for3Use2_13),
27+
("com.typesafe.akka" %% "akka-actor-testkit-typed" % akkaVersion % Test).cross(CrossVersion.for3Use2_13),
28+
"com.dimafeng" %% "testcontainers-scala-scalatest" % testContainersScalaVersion % Test,
29+
"org.slf4j" % "slf4j-jdk14" % "2.0.16" % Test,
30+
("io.moia" %% "scala-http-client" % "5.2.0" % Test).cross(CrossVersion.for3Use2_13)
31+
),
32+
publishMavenStyle := true,
33+
Test / publishArtifact := false,
34+
pomIncludeRepository := { _ => false },
35+
ThisBuild / publishTo := {
36+
val nexus = "https://s01.oss.sonatype.org/"
37+
if (isSnapshot.value)
38+
Some("snapshots" at nexus + "content/repositories/snapshots")
39+
else
40+
Some("releases" at nexus + "service/local/staging/deploy/maven2")
41+
},
42+
scmInfo := Some(
43+
ScmInfo(
44+
url("https://github.com/CleverCloud/testcontainers-scala-warp10"),
45+
"scm:git:git@github.com:CleverCloud/testcontainers-scala-warp10"
46+
)
47+
),
48+
developers := List(
49+
Developer("judu", "Julien Durillon", "julien.durillon@clever-cloud.com", url("https://github.com/judu"))
50+
),
51+
Test / fork := true,
52+
usePgpKeyHex("A7B8F38C536F1DF2")
53+
)

0 commit comments

Comments
 (0)