-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
65 lines (60 loc) · 2.22 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
55
56
57
58
59
60
61
62
63
64
65
lazy val commonSettings = Seq(
Compile / compile / javacOptions ++= Seq("-source", "1.8", "-target", "1.8"),
libraryDependencies ++= {
CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, _)) =>
Seq(compilerPlugin(Dependencies.kindProjector), compilerPlugin(Dependencies.betterMonadicFor))
case _ => Seq.empty
}
},
scalacOptions += {
CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, _)) => "-Wconf:any:wv"
case _ => "-Wconf:any:v"
}
},
Test / fork := true,
resolvers += Resolver.sonatypeRepo("releases"),
)
lazy val noPublishSettings =
commonSettings ++ Seq(publish := {}, publishArtifact := false, publishTo := None, publish / skip := true)
lazy val publishSettings = commonSettings ++ Seq(
publishMavenStyle := true,
pomIncludeRepository := { _ =>
false
},
Test / publishArtifact := false
)
lazy val root = (project in file("."))
.settings(noPublishSettings)
.settings(name := "Trace4Cats Avro Kafka")
.aggregate(`avro-kafka-consumer`, `avro-kafka-exporter`)
lazy val `avro-kafka-consumer` =
(project in file("modules/avro-kafka-consumer"))
.settings(publishSettings)
.settings(
name := "trace4cats-avro-kafka-consumer",
libraryDependencies ++= Seq(Dependencies.trace4catsAvro, Dependencies.fs2Kafka, Dependencies.log4cats),
libraryDependencies ++=
(CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, _)) => Seq(Dependencies.trace4catsTestkit, Dependencies.embeddedKafka, Dependencies.logback)
case _ => Seq.empty
}).map(_ % Test)
)
lazy val `avro-kafka-exporter` =
(project in file("modules/avro-kafka-exporter"))
.settings(publishSettings)
.settings(
name := "trace4cats-avro-kafka-exporter",
libraryDependencies ++= Seq(
Dependencies.trace4catsAvro,
Dependencies.trace4catsCore,
Dependencies.fs2Kafka,
Dependencies.log4cats
),
libraryDependencies ++=
(CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, _)) => Seq(Dependencies.trace4catsTestkit, Dependencies.embeddedKafka, Dependencies.logback)
case _ => Seq.empty
}).map(_ % Test)
)