-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.sbt
37 lines (34 loc) · 883 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
import Dependencies._
enablePlugins(GatlingPlugin)
Test / PB.targets := Seq(
scalapb.gen() -> (Test / sourceManaged).value,
)
lazy val root = (project in file("."))
.settings(
inThisBuild(
List(
organization := "ru.tinkoff.load",
scalaVersion := "2.13.8",
version := "0.1.0",
),
),
name := "mygrpc",
libraryDependencies ++= gatling,
libraryDependencies ++= gatlingPicatinny,
libraryDependencies ++= janino,
libraryDependencies ++= gatlingGrpc,
libraryDependencies ++= grpcDeps,
libraryDependencies ++= epoll,
scalacOptions ++= Seq(
"-encoding",
"UTF-8",
"-Xfatal-warnings",
"-deprecation",
"-feature",
"-unchecked",
"-language:implicitConversions",
"-language:higherKinds",
"-language:existentials",
"-language:postfixOps",
),
)