-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
54 lines (46 loc) · 1.25 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
54
import Dependencies._
ThisBuild / scalaVersion := "2.13.10"
ThisBuild / organization := "extremeprogramming"
ThisBuild / version := "1.0.0-M1"
ThisBuild / licenses += ("GPL", url("https://www.gnu.org/licenses/gpl-3.0.en.html"))
ThisBuild / developers += Developer(
"girdharshubham",
"Shubham Girdhar",
url("https://github.com/girdharshubham"),
)
ThisBuild / javacOptions ++= Seq(
"-source",
"1.19",
"-target",
"1.19",
"-Xlint:unchecked",
"-Xlint:deprecation",
)
ThisBuild / scalacOptions ++= Seq(
"-deprecation",
"-encoding",
"UTF-8",
"-feature",
"-language:existentials",
"-language:higherKinds",
"-language:implicitConversions",
"-unchecked",
"-Xlint",
"-Ywarn-dead-code",
"-Ywarn-numeric-widen",
"-Ywarn-value-discard",
)
lazy val rams = (project in file("."))
.aggregate(manager, ingestor, processor, carrier)
lazy val manager = (project in file("manager"))
.enablePlugins(KalixPlugin)
.settings(
libraryDependencies ++= Seq(scalatest),
)
lazy val ingestor = project in file("ingestor")
// .enablePlugins(KalixPlugin)
lazy val processor = project in file("processor")
// .enablePlugins(KalixPlugin)
lazy val carrier = project in file("carrier")
// .enablePlugins(KalixPlugin)