31 lines
974 B
Scala
31 lines
974 B
Scala
lazy val root = (project in file(".")).settings(
|
|
inThisBuild(
|
|
List(
|
|
organization := "com.example",
|
|
scalaVersion := "2.13.5",
|
|
version := "0.1.0-SNAPSHOT",
|
|
semanticdbEnabled := true,
|
|
semanticdbVersion := scalafixSemanticdb.revision,
|
|
scalafixScalaBinaryVersion := "2.13"
|
|
)
|
|
),
|
|
name := "LibreCaptcha",
|
|
libraryDependencies += "com.sksamuel.scrimage" % "scrimage-core" % "4.0.12",
|
|
libraryDependencies += "com.sksamuel.scrimage" % "scrimage-filters" % "4.0.12",
|
|
libraryDependencies += "org.json4s" % "json4s-jackson_2.13" % "3.6.11"
|
|
)
|
|
|
|
Compile / unmanagedResourceDirectories += { baseDirectory.value / "lib" }
|
|
scalacOptions ++= List(
|
|
"-Yrangepos",
|
|
"-Ywarn-unused",
|
|
"-deprecation"
|
|
)
|
|
javacOptions += "-g:none"
|
|
compileOrder := CompileOrder.JavaThenScala
|
|
assembly / mainClass := Some("lc.LCFramework")
|
|
Compile / run / mainClass := Some("lc.LCFramework")
|
|
assembly / assemblyJarName := "LibreCaptcha.jar"
|
|
|
|
run / fork := true
|