-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
21 lines (18 loc) · 831 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / scalaVersion := "2.13.10"
enablePlugins(JavaServerAppPackaging, GatlingPlugin, JmhPlugin)
lazy val root = (project in file("."))
.settings(
name := "sch_redis_perf",
Compile / run / mainClass := Some("com.streamsets.spring.SpringBootMain"),
libraryDependencies ++= Seq(
"com.github.pureconfig" %% "pureconfig" % "0.17.2",
"org.redisson" % "redisson" % "3.20.0",
"com.lihaoyi" %% "upickle" % "3.0.0",
"commons-codec" % "commons-codec" % "1.15",
"org.springframework.boot" % "spring-boot-starter-webflux" % "3.0.4",
"org.openjdk.jmh" % "jmh-generator-annprocess" % "1.36",
"io.gatling.highcharts" % "gatling-charts-highcharts" % "3.9.1" % "test",
"io.gatling" % "gatling-test-framework" % "3.9.1" % "test"
)
)