-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
27 lines (23 loc) · 1007 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
import Dependencies._
import Versions._
ThisBuild / scalaVersion := Scala_2_12_Version
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / organization := "org.kafka-plane"
ThisBuild / organizationName := "own-project"
scalacOptions += "-Ypartial-unification"
resolvers += Opts.resolver.sonatypeSnapshots
testFrameworks += new TestFramework("minitest.runner.Framework")
lazy val root = (project in file("."))
.settings(
name := "kafka-plane",
developers := List(Developer("", "Pedro García-Valenciano Leon", "--", url("https://github.com/gvlpedro"))),
organizationHomepage := Option(url("http://ounity.com/")),
libraryDependencies ++= Seq(
kafkaStreams excludeAll (ExclusionRule("org.slf4j", "slf4j-log4j12"), ExclusionRule("org.apache.zookeeper",
"zookeeper")),
scalaLogging % "test",
logback % "test",
chill % "test",
avro4s % "test"
)
)