Add compile config options

Signed-off-by: Rahul Rudragoudar <rr83019@gmail.com>
This commit is contained in:
Rahul Rudragoudar 2021-03-29 15:31:27 +05:30
parent 18d38990e5
commit 8c8bda8d59
No known key found for this signature in database
GPG Key ID: 0D2CE231A7287EBC

View File

@ -22,5 +22,8 @@ scalacOptions ++= List(
) )
javacOptions += "-g:none" javacOptions += "-g:none"
compileOrder := CompileOrder.JavaThenScala 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 fork in run := true