Skip to content

Commit

Permalink
Upgrade sbt and scala
Browse files Browse the repository at this point in the history
  • Loading branch information
balagez committed Dec 20, 2021
1 parent cd28282 commit 5b2117d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import scalariform.formatter.preferences._

name := "safe-config"
organization := "com.kinja"
version := "1.1.3-SNAPSHOT"
version := "1.1.3"

scalaVersion := "2.13.6"
crossScalaVersions := Seq("2.13.6", "2.12.8", "2.11.12")
scalaVersion := "2.13.7"
crossScalaVersions := Seq("2.13.7", "2.12.15", "2.11.12")

scalacOptions ++= Seq(
"-unchecked", // Show details of unchecked warnings.
Expand Down Expand Up @@ -84,7 +84,7 @@ libraryDependencies ++= (CrossVersion.partialVersion(scalaVersion.value) match {
Seq()
case _ =>
Seq(
compilerPlugin("org.scalamacros" % "paradise" % "2.1.0" cross CrossVersion.full),
compilerPlugin("org.scalamacros" % "paradise" % "2.1.1" cross CrossVersion.full),
"org.scala-lang.modules" %% "scala-collection-compat" % "2.1.1"
)
})
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.5.5
sbt.version=1.5.7
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
addSbtPlugin("org.scalariform" % "sbt-scalariform" % "1.8.2")

addSbtPlugin("org.wartremover" % "sbt-wartremover" % "2.4.13")
addSbtPlugin("org.wartremover" % "sbt-wartremover" % "2.4.16")

addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.5")

Expand Down

0 comments on commit 5b2117d

Please sign in to comment.