Skip to content

Commit

Permalink
feat: update gatling 3.10.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jigarkhwar committed May 23, 2024
1 parent f997006 commit 95dd954
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
runner.dialect = "scala213"
version=3.7.3
version = 3.8.1
binPack.parentConstructors = true
maxColumn = 128
includeCurlyBraceInSelectChains = false
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import Dependencies._
import Dependencies.*

lazy val root = (project in file("."))
.enablePlugins(GitVersioning, GatlingPlugin)
.settings(
name := "gatling-jdbc-plugin",
scalaVersion := "2.13.10",
scalaVersion := "2.13.14",
libraryDependencies ++= gatling ++ gatlingCore,
libraryDependencies ++= Seq(hikari, h2jdbc),
scalacOptions ++= Seq(
Expand Down
8 changes: 4 additions & 4 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import sbt._
import sbt.*

object Dependencies {

val gatlingVersion = "3.9.5"
val gatlingVersion = "3.10.5"

lazy val gatlingCore: Seq[ModuleID] = Seq(
"io.gatling" % "gatling-core",
Expand All @@ -14,7 +14,7 @@ object Dependencies {
"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
lazy val hikari = "com.zaxxer" % "HikariCP" % "5.1.0" exclude ("org.slf4j", "slf4j-api")
lazy val h2jdbc = "com.h2database" % "h2" % "2.2.224" % Test

}
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# suppress inspection "UnusedProperty"
sbt.version=1.8.3
sbt.version=1.9.9
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("io.gatling" % "gatling-sbt" % "4.3.2")
addSbtPlugin("io.gatling" % "gatling-sbt" % "4.7.0")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.7")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.12")
2 changes: 2 additions & 0 deletions publish.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ ThisBuild / scmInfo := Some(
),
)

ThisBuild / scalaVersion := "2.13.14"

ThisBuild / developers := List(
Developer(
id = "jigarkhwar",
Expand Down

0 comments on commit 95dd954

Please sign in to comment.