2018-01-02 22:42:43 -05:00
|
|
|
lazy val root = (project in file(".")).
|
|
|
|
settings(
|
|
|
|
inThisBuild(List(
|
|
|
|
organization := "com.example",
|
2020-07-16 08:26:16 -04:00
|
|
|
scalaVersion := "2.13.3",
|
2018-01-02 22:42:43 -05:00
|
|
|
version := "0.1.0-SNAPSHOT")),
|
|
|
|
name := "LibreCaptcha",
|
|
|
|
|
2020-06-29 23:32:20 -04:00
|
|
|
libraryDependencies += "com.sksamuel.scrimage" % "scrimage-core" % "4.0.5",
|
2018-01-02 22:42:43 -05:00
|
|
|
|
2020-06-29 23:32:20 -04:00
|
|
|
libraryDependencies += "com.sksamuel.scrimage" % "scrimage-filters" % "4.0.5",
|
2020-07-16 08:26:16 -04:00
|
|
|
|
2020-06-29 23:32:20 -04:00
|
|
|
libraryDependencies += "org.json4s" % "json4s-jackson_2.13" % "3.6.9"
|
2020-07-16 08:26:16 -04:00
|
|
|
|
2018-01-02 22:42:43 -05:00
|
|
|
)
|
2018-06-06 02:48:40 -04:00
|
|
|
|
2018-12-17 03:04:24 -05:00
|
|
|
unmanagedResourceDirectories in Compile += {baseDirectory.value / "lib"}
|
|
|
|
javacOptions += "-g:none"
|
|
|
|
compileOrder := CompileOrder.JavaThenScala
|
|
|
|
|
2018-06-06 02:48:40 -04:00
|
|
|
fork in run := true
|