diff --git a/README.md b/README.md index a2bbfa5..7f93cd5 100644 --- a/README.md +++ b/README.md @@ -15,4 +15,4 @@ libraryDependencies += "ru.tinkoff" %% "gatling-jdbc-plugin" % % Test ``` ## Example Scenarios -Examples [here](https://github.com/Tinkoff/gatling-jdbc-plugin/tree/master/src/test/scala/ru/tinkoff/load/jdbc/test) +Examples [here](https://github.com/Tinkoff/gatling-jdbc-plugin/tree/master/src/test) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index b364e00..8bf0c60 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -5,14 +5,14 @@ object Dependencies { val gatlingVersion = "3.9.0" lazy val gatlingCore: Seq[ModuleID] = Seq( - "io.gatling" % "gatling-core" % gatlingVersion % "provided", - "io.gatling" % "gatling-core-java" % gatlingVersion % "provided", - ) + "io.gatling" % "gatling-core", + "io.gatling" % "gatling-core-java", + ).map(_ % gatlingVersion % "provided") lazy val gatling: Seq[ModuleID] = Seq( - "io.gatling.highcharts" % "gatling-charts-highcharts", "io.gatling" % "gatling-test-framework", - ).map(_ % gatlingVersion % Test) + "io.gatling.highcharts" % "gatling-charts-highcharts", + ).map(_ % gatlingVersion % "it,test") lazy val hikari = "com.zaxxer" % "HikariCP" % "5.0.1" exclude ("org.slf4j", "slf4j-api") lazy val h2jdbc = "com.h2database" % "h2" % "2.1.214" % Test