27 lines
779 B
Scala
27 lines
779 B
Scala
import Dependencies._
|
|
|
|
lazy val root = (project in file(".")).
|
|
settings(
|
|
inThisBuild(List(
|
|
organization := "com.example",
|
|
scalaVersion := "2.12.8",
|
|
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",
|
|
|
|
libraryDependencies += "com.sksamuel.scrimage" %% "scrimage-filters" % "2.1.8",
|
|
|
|
libraryDependencies += "org.json4s" %% "json4s-jackson" % "3.6.5"
|
|
|
|
)
|
|
|
|
unmanagedResourceDirectories in Compile += {baseDirectory.value / "lib"}
|
|
javacOptions += "-g:none"
|
|
compileOrder := CompileOrder.JavaThenScala
|
|
|
|
fork in run := true
|