forked from rchillyard/Matchers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
22 lines (11 loc) · 684 Bytes
/
build.sbt
File metadata and controls
22 lines (11 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
organization := "com.phasmidsoftware"
name := "Matchers"
version := "1.0.4"
scalaVersion := "2.13.6"
scalacOptions ++= Seq( "-target:jvm-1.8", "-encoding", "UTF-8", "-unchecked", "-deprecation", "-Ywarn-dead-code", "-Ywarn-value-discard", "-Ywarn-unused" )
val scalaTestVersion = "3.2.9"
libraryDependencies += "org.slf4j" % "slf4j-api" % "1.7.31"
libraryDependencies += "org.scalatest" %% "scalatest" % scalaTestVersion % "test"
libraryDependencies +="ch.qos.logback" % "logback-classic" % "1.2.3" % "test"
resolvers += "Typesafe Repository" at "https://repo.typesafe.com/typesafe/releases/"
libraryDependencies += "org.scala-lang" % "scala-compiler" % scalaVersion.value