removed dependency on scala test

This commit is contained in:
hrj 2020-06-30 09:01:34 +05:30
parent 21dfbe310f
commit 8b021c20e5
2 changed files with 0 additions and 8 deletions

View File

@ -1,5 +1,3 @@
import Dependencies._
lazy val root = (project in file(".")).
settings(
inThisBuild(List(
@ -7,7 +5,6 @@ lazy val root = (project in file(".")).
scalaVersion := "2.13.2",
version := "0.1.0-SNAPSHOT")),
name := "LibreCaptcha",
libraryDependencies += scalaTest % Test,
libraryDependencies += "com.sksamuel.scrimage" %% "scrimage-core" % "4.0.5",

View File

@ -1,5 +0,0 @@
import sbt._
object Dependencies {
lazy val scalaTest = "org.scalatest" %% "scalatest" % "3.0.7"
}