-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
40 lines (34 loc) · 1.36 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
38
39
40
/** *****************************************/
/** ********* PROJECT INFO ******************/
/** *****************************************/
name := "finder-kata"
version := "1.0-SNAPSHOT"
/** *********************************************/
/** ********* PROJECT SETTINGS ******************/
/** *********************************************/
Configuration.settings
/** *********************************************/
/** ********* PROD DEPENDENCIES *****************/
/** *********************************************/
libraryDependencies ++= Seq(
"com.github.nscala-time" %% "nscala-time" % "2.12.0",
"com.lihaoyi" %% "pprint" % "0.4.1"
)
/** *********************************************/
/** ********* TEST DEPENDENCIES *****************/
/** *********************************************/
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.0.0" % Test,
"org.scalamock" %% "scalamock-scalatest-support" % "3.2.2" % Test
)
/** *********************************************/
/** ********* COMMANDS ALIASES ******************/
/** *********************************************/
addCommandAlias("t", "test")
addCommandAlias("to", "testOnly")
addCommandAlias("tq", "testQuick")
addCommandAlias("tsf", "testShowFailed")
addCommandAlias("c", "compile")
addCommandAlias("tc", "test:compile")
addCommandAlias("s", "scalastyle")
addCommandAlias("ts", "test:scalastyle")