-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
41 lines (37 loc) · 957 Bytes
/
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
import Dependencies._
ThisBuild / organization := "com.sparetimedevs"
ThisBuild / version := "0.0.1"
ThisBuild / scalaVersion := "3.1.1"
ThisBuild / scalacOptions ++= Seq(
"-Yexplicit-nulls",
"-Ysafe-init"
)
lazy val testUtil = (project in file("test-util"))
.settings(
name := "test-util",
libraryDependencies ++= Seq(catsEffect, scalaTest)
)
lazy val core = (project in file("ami-core"))
.settings(
name := "ami-core",
libraryDependencies ++= Seq(scalaTest)
)
.dependsOn(testUtil)
.aggregate(testUtil)
lazy val root = (project in file("."))
.settings(
name := "ami-media-processor",
libraryDependencies ++= Seq(
scalaXml,
scalaParser,
jaxbApi,
catsCore,
catsEffect,
doodle,
scalaTest,
diffUtils
/* , scalatestSnapshotMatcherCore included in /lib/scalatest-snapshot-matcher-core_3.jar */
)
)
.dependsOn(testUtil, core)
.aggregate(testUtil, core)