-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
53 lines (48 loc) · 1.4 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import Dependencies.*
// Use FIJI Scala version
//ThisBuild / scalaVersion := "2.13.8"
ThisBuild / scalaVersion := "3.3.1"
ThisBuild / version := "1.3.0.1-SNAPSHOT"
ThisBuild / organization := "net.sf.ij-plugins"
ThisBuild / organizationName := "IJ-Plugins"
lazy val root = (project in file("."))
.settings(
name := "IJ-Plugins Bundle",
libraryDependencies ++=
Seq(
ijpColor,
ijpColorUI,
// ijpDebayer2sx,
ijpDebayer2sxPlugins,
ijpToolkit,
// ijpScalaConsolePlugins,
ijpImageIO,
imagej,
scalaTest % Test
),
// // Add JavaFX dependencies used by IJP-Color
// libraryDependencies ++= javaFXModules.map(m =>
// "org.openjfx" % s"javafx-$m" % javaFXVersion classifier osName
// ),
//
resolvers += Resolver.mavenLocal,
//
fork := true,
ijRuntimeSubDir := "sandbox",
ijPluginsSubDir := "ij-plugins",
ijCleanBeforePrepareRun := true,
cleanFiles += ijPluginsDir.value
)
//name := "IJ-Plugins Bundle"
//libraryDependencies ++=
// Seq(
// ijpColor,
// ijpColorUI,
// imagej,
// scalaTest % Test)
//fork := true
//ijRuntimeSubDir := "sandbox"
//ijPluginsSubDir := "ij-plugins"
//ijCleanBeforePrepareRun := true
//cleanFiles += ijPluginsDir.value
// See https://www.scala-sbt.org/1.x/docs/Using-Sonatype.html for instructions on how to publish to Sonatype.