bump to latest sbt version
This commit is contained in:
parent
f8de5a5932
commit
2d7f229d30
10
build.sbt
10
build.sbt
|
@ -15,7 +15,7 @@ lazy val root = (project in file(".")).settings(
|
|||
libraryDependencies += "org.json4s" % "json4s-jackson_2.13" % "3.6.11"
|
||||
)
|
||||
|
||||
unmanagedResourceDirectories in Compile += { baseDirectory.value / "lib" }
|
||||
Compile / unmanagedResourceDirectories += { baseDirectory.value / "lib" }
|
||||
scalacOptions ++= List(
|
||||
"-Yrangepos",
|
||||
"-Ywarn-unused",
|
||||
|
@ -23,8 +23,8 @@ scalacOptions ++= List(
|
|||
)
|
||||
javacOptions += "-g:none"
|
||||
compileOrder := CompileOrder.JavaThenScala
|
||||
mainClass in assembly := Some("lc.LCFramework")
|
||||
mainClass in (Compile, run) := Some("lc.LCFramework")
|
||||
assemblyJarName in assembly := "LibreCaptcha.jar"
|
||||
assembly / mainClass := Some("lc.LCFramework")
|
||||
Compile / run / mainClass := Some("lc.LCFramework")
|
||||
assembly / assemblyJarName := "LibreCaptcha.jar"
|
||||
|
||||
fork in run := true
|
||||
run / fork := true
|
||||
|
|
|
@ -1 +1 @@
|
|||
sbt.version=1.4.9
|
||||
sbt.version=1.5.0
|
||||
|
|
Loading…
Reference in New Issue