Skip to content

Commit

Permalink
Fixed native packager issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Martomate committed Jan 20, 2024
1 parent 340716c commit d9a596c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
scalaVersion := "3.3.0"
scalaVersion := "3.3.1"

name := "TriPaint"
organization := "com.martomate"
Expand All @@ -14,7 +14,9 @@ jlinkIgnoreMissingDependency := JlinkIgnore.only(
"scalafx" -> "javafx.embed.swing",
"scalafx.embed.swing" -> "javafx.embed.swing",
"scalafx" -> "javafx.scene.web",
"scalafx.scene.web" -> "javafx.scene.web"
"scalafx.scene.web" -> "javafx.scene.web",
"scala.quoted" -> "scala",
"scala.quoted.runtime" -> "scala"
)

jlinkOptions ++= Seq(
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.9.2
sbt.version=1.9.8
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.4")
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.2")
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.9.11")
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.9.16")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")

0 comments on commit d9a596c

Please sign in to comment.