-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.sbt
executable file
·38 lines (28 loc) · 1.42 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
organization := "com.phasmidsoftware"
name := "TableParser"
version := "1.1.3"
scalaVersion := "2.13.10"
scalacOptions += "-deprecation"
// NOTE: if you reinstate these directories, you will need to manage the large crimes file (see code).
//Test / unmanagedSourceDirectories += baseDirectory.value / "src/it/scala"
//Test / unmanagedResourceDirectories += baseDirectory.value / "src/it/resources"
resolvers += "Typesafe Repository" at "https://repo.typesafe.com/typesafe/releases/"
lazy val scalaModules = "org.scala-lang.modules"
lazy val scalaTestVersion = "3.2.15"
// NOTE: Issue #44: this library is not currently compatible with version 2.x.x of the parser-combinators library
lazy val scalaParserCombinatorsVersion = "1.1.2"
lazy val nScalaTimeVersion = "2.32.0"
lazy val tsecVersion = "0.4.0"
libraryDependencies ++= Seq(
"io.github.jmcardon" %% "tsec-cipher-jca" % tsecVersion,
"com.phasmidsoftware" %% "flog" % "1.0.8",
"io.spray" %% "spray-json" % "1.3.6",
//noinspection SbtDependencyVersionInspection
scalaModules %% "scala-parser-combinators" % scalaParserCombinatorsVersion,
"com.github.nscala-time" %% "nscala-time" % nScalaTimeVersion,
"ch.qos.logback" % "logback-classic" % "1.4.5" % "runtime",
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.5",
"org.scalatest" %% "scalatest" % scalaTestVersion % "test"
)
libraryDependencies +=
"org.scala-lang.modules" %% "scala-parallel-collections" % "1.0.4"