Skip to content

Commit 51bf9b2

Browse files
committed
Update dependencies
Updates scala and all dependencies Removed support for scala 2.11 as it has reached EOL in 2016
1 parent 8b7350f commit 51bf9b2

File tree

3 files changed

+15
-16
lines changed

3 files changed

+15
-16
lines changed

build.sbt

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@ import ReleaseTransformations._
22

33
ThisBuild / organization := "com.github.dwickern"
44

5-
lazy val scala3 = "3.0.2"
6-
lazy val scala213 = "2.13.7"
7-
lazy val scala212 = "2.12.15"
8-
lazy val scala211 = "2.11.12"
5+
lazy val scala3 = "3.6.3"
6+
lazy val scala213 = "2.13.16"
7+
lazy val scala212 = "2.12.20"
98

109
lazy val root = project.in(file("."))
1110
.aggregate(nameof.projectRefs: _*)
@@ -27,20 +26,20 @@ lazy val nameof = (projectMatrix in file("."))
2726
releaseCrossBuild := true,
2827
ideSkipProject := true,
2928
libraryDependencies ++= Seq(
30-
"org.scalatest" %% "scalatest" % "3.2.10" % Test,
31-
"javax.annotation" % "javax.annotation-api" % "1.3.1" % Test,
29+
"org.scalatest" %% "scalatest" % "3.2.19" % Test,
30+
"javax.annotation" % "javax.annotation-api" % "1.3.2" % Test,
3231
),
3332
)
3433
.jvmPlatform(scalaVersions = Seq(scala3), Seq(
3534
libraryDependencies ++= Seq(
36-
"org.typelevel" %% "shapeless3-test" % "3.0.4" % Test,
35+
"org.typelevel" %% "shapeless3-test" % "3.4.3" % Test,
3736
)
3837
))
39-
.jvmPlatform(scalaVersions = Seq(scala213, scala212, scala211), Seq(
38+
.jvmPlatform(scalaVersions = Seq(scala213, scala212), Seq(
4039
libraryDependencies ++= Seq(
4140
"org.scala-lang" % "scala-reflect" % scalaVersion.value % Provided,
4241
"org.scala-lang" % "scala-compiler" % scalaVersion.value % Provided,
43-
"com.chuusai" %% "shapeless" % "2.3.7" % Test,
42+
"com.chuusai" %% "shapeless" % "2.3.12" % Test,
4443
),
4544
))
4645

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version = 1.5.7
1+
sbt.version = 1.9.9

project/plugins.sbt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
logLevel := Level.Warn
22

3-
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.10")
4-
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")
5-
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.1.0")
6-
addSbtPlugin("com.eed3si9n" % "sbt-projectmatrix" % "0.9.0")
7-
addSbtPlugin("org.jetbrains" % "sbt-ide-settings" % "1.1.0")
8-
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.2.23" )
3+
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.12.2")
4+
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.3.1")
5+
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.4.0")
6+
addSbtPlugin("com.eed3si9n" % "sbt-projectmatrix" % "0.10.0")
7+
addSbtPlugin("org.jetbrains.scala" % "sbt-ide-settings" % "1.1.2")
8+
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.6.4" )

0 commit comments

Comments
 (0)