-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.sbt
30 lines (29 loc) · 1.1 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
lazy val `sequencer-scripts` = project
.in(file("."))
.enablePlugins(KotlinPlugin)
.aggregate(`ignore`)
.settings(
kotlinVersion := "1.6.10",
kotlincOptions ++= Seq("-Xopt-in=kotlin.time.ExperimentalTime", "-jvm-target", "1.8"),
inThisBuild(
List(
organization := "com.github.tmtsoftware.sequencer-scripts",
scalaVersion := "2.13.8",
version := "0.4.0"
)
),
Compile / unmanagedSourceDirectories += (Compile / baseDirectory)(_ / "scripts").value,
Compile / unmanagedSources / excludeFilter := "*.conf",
Test / unmanagedSourceDirectories += (Test / baseDirectory)(_ / "tests").value,
Compile / unmanagedResourceDirectories += (Compile / baseDirectory)(_ / "scripts").value,
Compile / unmanagedResources / includeFilter := "*.conf",
Compile / mainClass := Some("esw.ocs.app.SequencerApp"),
name := "sequencer-scripts",
resolvers += "jitpack" at "https://jitpack.io",
libraryDependencies ++= Seq(
Libs.`esw-ocs-dsl-kt`,
Libs.`esw-ocs-app`
),
Test / fork := true
)
lazy val `ignore` = project.in(file(".ignore"))