-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
26 lines (17 loc) · 892 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
organization := "com.phasmidsoftware"
name := "Number"
version := "1.1.0"
scalaVersion := "2.13.11"
scalacOptions ++= Seq("-encoding", "UTF-8", "-unchecked", "-deprecation", "-Ywarn-dead-code", "-Ywarn-value-discard", "-Ywarn-unused" )
val scalaTestVersion = "3.2.15"
libraryDependencies ++= Seq(
"com.phasmidsoftware" %% "flog" % "1.0.8",
"com.phasmidsoftware" %% "matchers" % "1.0.5",
"org.apache.commons" % "commons-math3" % "3.6.1",
"com.novocode" % "junit-interface" % "0.11" % "test",
"org.scalatest" %% "scalatest" % scalaTestVersion % "test",
"org.scala-lang.modules" %% "scala-parser-combinators" % "2.2.0",
"ch.qos.logback" % "logback-classic" % "1.4.7" % "test",
"org.scalacheck" %% "scalacheck" % "1.17.0" % "test" // This is used for testing Rational
)
resolvers += "Typesafe Repository" at "https://repo.typesafe.com/typesafe/releases/"