Skip to content

Commit

Permalink
fix: fix dependences and readme (#62)
Browse files Browse the repository at this point in the history
* feat: add java-kotlin support

* feat: refactoring

* feat: move javaapi scala classes

* fix: change import JdbcDsl

* fix: fix Dependencies and readme

* fix: fix Dependencies

---------

Co-authored-by: a.v.muratova <[email protected]>
  • Loading branch information
AlexandraPerevozchikova and a.v.muratova authored Feb 15, 2023
1 parent f717450 commit 3ef4b21
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ libraryDependencies += "ru.tinkoff" %% "gatling-jdbc-plugin" % <version> % 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)
10 changes: 5 additions & 5 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3ef4b21

Please sign in to comment.