mirror of
https://github.com/ij-plugins/ijp-imagej-launcher.git
synced 2024-11-13 16:29:01 -08:00
Add test for Scala Native #3293 that should be resolved in v.0.4.13
This commit is contained in:
parent
47674de560
commit
c30b853f64
2 changed files with 33 additions and 4 deletions
|
|
@ -1,4 +1,4 @@
|
|||
scalaVersion := "3.3.0"
|
||||
scalaVersion := "3.3.0"
|
||||
//name := "IJP-ImageJ-Launcher"
|
||||
version := "0.1.1-SNAPSHOT"
|
||||
versionScheme := Some("early-semver")
|
||||
|
|
@ -16,14 +16,15 @@ enablePlugins(ScalaNativePlugin)
|
|||
logLevel := Level.Info
|
||||
|
||||
libraryDependencies ++= Seq(
|
||||
"com.github.scopt" %%% "scopt" % "4.1.0",
|
||||
"com.lihaoyi" %%% "os-lib" % "0.9.1"
|
||||
"com.github.scopt" %%% "scopt" % "4.1.0",
|
||||
"com.lihaoyi" %%% "os-lib" % "0.9.1",
|
||||
"org.scalatest" %%% "scalatest" % "3.2.16" % Test
|
||||
)
|
||||
|
||||
Compile / run / mainClass := Some("ij_plugins.imagej_launcher.Main")
|
||||
|
||||
// import to add Scala Native options
|
||||
import scala.scalanative.build._
|
||||
import scala.scalanative.build.*
|
||||
|
||||
// defaults set with common options shown
|
||||
nativeConfig ~= { c =>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue