2018-01-03 09:12:43 +05:30
|
|
|
import Dependencies._
|
|
|
|
|
|
|
|
lazy val root = (project in file(".")).
|
|
|
|
settings(
|
|
|
|
inThisBuild(List(
|
|
|
|
organization := "com.example",
|
2019-03-13 23:38:24 +05:30
|
|
|
scalaVersion := "2.12.8",
|
2018-01-03 09:12:43 +05:30
|
|
|
version := "0.1.0-SNAPSHOT")),
|
|
|
|
name := "LibreCaptcha",
|
|
|
|
libraryDependencies += scalaTest % Test,
|
|
|
|
|
|
|
|
libraryDependencies += "com.sksamuel.scrimage" %% "scrimage-core" % "2.1.8",
|
|
|
|
|
|
|
|
libraryDependencies += "com.sksamuel.scrimage" %% "scrimage-io-extra" % "2.1.8",
|
|
|
|
|
2018-12-17 13:34:24 +05:30
|
|
|
libraryDependencies += "com.sksamuel.scrimage" %% "scrimage-filters" % "2.1.8",
|
|
|
|
|
2019-03-31 16:53:32 +05:30
|
|
|
libraryDependencies += "org.json4s" %% "json4s-jackson" % "3.6.5"
|
2018-01-03 09:12:43 +05:30
|
|
|
|
|
|
|
)
|
2018-06-06 12:18:40 +05:30
|
|
|
|
2018-12-17 13:34:24 +05:30
|
|
|
unmanagedResourceDirectories in Compile += {baseDirectory.value / "lib"}
|
|
|
|
javacOptions += "-g:none"
|
|
|
|
compileOrder := CompileOrder.JavaThenScala
|
|
|
|
|
2018-06-06 12:18:40 +05:30
|
|
|
fork in run := true
|