-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
31 lines (31 loc) · 1.16 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
lazy val root = (project in file(".")).settings(
name := "webot",
organization := "com.github.zhongl",
homepage := Some(url("https://github.com/hanabix/webot")),
licenses := List(
"Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")
),
developers := List(
Developer(
"zhongl",
"Lunfu Zhong",
url("https://github.com/zhongl")
)
),
scalaVersion := "2.13.12",
semanticdbEnabled := true,
semanticdbVersion := scalafixSemanticdb.revision,
scalafmtOnCompile := true,
scalacOptions += "-deprecation",
scalacOptions += "-Wunused",
resolvers += "Artima Maven Repository" at "https://repo.artima.com/releases",
libraryDependencies ++= Seq(
"org.seleniumhq.selenium" % "selenium-java" % "4.15.0",
"com.lihaoyi" % "ammonite" % "2.5.11" cross CrossVersion.full,
"org.typelevel" %% "cats-free" % "2.10.0",
"org.scalatest" %% "scalatest-wordspec" % "3.2.17" % Test,
"org.scalactic" %% "scalactic" % "3.2.17",
"org.scalamock" %% "scalamock" % "5.2.0" % Test
)
)