From d3ffc5ae62de8aa8c3bcfbe68ab027c65b154d52 Mon Sep 17 00:00:00 2001 From: hrj Date: Thu, 16 Jul 2020 17:56:16 +0530 Subject: [PATCH] bump scala version --- build.sbt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index ef6d585..3899dfc 100644 --- a/build.sbt +++ b/build.sbt @@ -2,16 +2,16 @@ lazy val root = (project in file(".")). settings( inThisBuild(List( organization := "com.example", - scalaVersion := "2.13.2", + scalaVersion := "2.13.3", version := "0.1.0-SNAPSHOT")), name := "LibreCaptcha", libraryDependencies += "com.sksamuel.scrimage" % "scrimage-core" % "4.0.5", libraryDependencies += "com.sksamuel.scrimage" % "scrimage-filters" % "4.0.5", - + libraryDependencies += "org.json4s" % "json4s-jackson_2.13" % "3.6.9" - + ) unmanagedResourceDirectories in Compile += {baseDirectory.value / "lib"}