-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
36 lines (32 loc) · 1.04 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
import Dependencies._
ThisBuild / scalaVersion := "2.13.8"
ThisBuild / version := "2.8.1"
ThisBuild / organization := "com.glints"
ThisBuild / organizationName := "glints"
lazy val root = (project in file("."))
.settings(
name := "kstreams4s",
libraryDependencies ++= Seq(
kafkaStreamsScala,
kafkaAvroSerializer,
kafkaStreamsAvroSerde,
avro4s,
kafkaStreamsTestUtils,
catsEffect,
scalaTest
),
resolvers += "Confluent Repo" at "https://packages.confluent.io/maven",
// Scalafix config
semanticdbEnabled := true,
semanticdbVersion := scalafixSemanticdb.revision,
scalacOptions += "-Xlint:unused",
scalacOptions += "-deprecation",
inThisBuild(
scalafixDependencies ++= Seq(
"org.scalalint" %% "rules" % "0.2.1",
"com.github.liancheng" %% "organize-imports" % "0.6.0"
)
)
)
addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1")
// See https://www.scala-sbt.org/1.x/docs/Using-Sonatype.html for instructions on how to publish to Sonatype.