mirror of
https://github.com/librecaptcha/lc-core.git
synced 2025-01-12 22:43:20 -05:00
31 lines
979 B
Scala
31 lines
979 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.17",
|
|
libraryDependencies += "com.sksamuel.scrimage" % "scrimage-filters" % "4.0.17",
|
|
libraryDependencies += "org.json4s" % "json4s-jackson_2.13" % "3.6.11"
|
|
)
|
|
|
|
unmanagedResourceDirectories in Compile += { baseDirectory.value / "lib" }
|
|
scalacOptions ++= List(
|
|
"-Yrangepos",
|
|
"-Ywarn-unused",
|
|
"-deprecation"
|
|
)
|
|
javacOptions += "-g:none"
|
|
compileOrder := CompileOrder.JavaThenScala
|
|
mainClass in assembly := Some("lc.LCFramework")
|
|
mainClass in (Compile, run) := Some("lc.LCFramework")
|
|
assemblyJarName in assembly := "LibreCaptcha.jar"
|
|
|
|
fork in run := true
|