Skip to content

Commit

Permalink
feat: update gatling 3.10.5 (#10)
Browse files Browse the repository at this point in the history
* feat: update gatling 3.10.5
  • Loading branch information
jigarkhwar authored May 22, 2024
1 parent b7d75c1 commit 81ef0a4
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 17 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,7 +1,7 @@
import Dependencies._
import Dependencies.*
//import org.galaxio.performance.avro.RegistrySubject

val scalaV = "2.13.10"
val scalaV = "2.13.14"
val avroSchemas = Seq() // for example Seq(RegistrySubject("test-hello-schema", 1))

lazy val root = (project in file("."))
Expand Down
14 changes: 7 additions & 7 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import sbt._
import sbt.*

object Dependencies {
private object Versions {
val kafka = "7.4.0-ce"
val gatling = "3.9.5"
val avro4s = "4.1.1"
val avro = "1.11.1"
val kafka = "7.6.0-ce"
val gatling = "3.10.5"
val avro4s = "4.1.2"
val avro = "1.11.3"
}

lazy val gatling: Seq[ModuleID] = Seq(
Expand All @@ -30,7 +30,7 @@ object Dependencies {
lazy val avroCompiler: ModuleID = "org.apache.avro" % "avro-compiler" % Versions.avro
lazy val avroCore: ModuleID = "org.apache.avro" % "avro" % Versions.avro
lazy val avroSerdes: ModuleID =
("io.confluent" % "kafka-streams-avro-serde" % "7.4.0").exclude("org.apache.kafka", "kafka-streams-scala")
lazy val avroSerializers: ModuleID = "io.confluent" % "kafka-avro-serializer" % "7.4.0"
("io.confluent" % "kafka-streams-avro-serde" % "7.6.0").exclude("org.apache.kafka", "kafka-streams-scala")
lazy val avroSerializers: ModuleID = "io.confluent" % "kafka-avro-serializer" % "7.6.0"

}
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.2
sbt.version=1.9.9
12 changes: 6 additions & 6 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ resolvers ++= Seq(
)

addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
addSbtPlugin("io.gatling" % "gatling-sbt" % "4.3.2")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")
addSbtPlugin("com.github.sbt" % "sbt-avro" % "3.4.2")
addSbtPlugin("org.galaxio" % "sbt-schema-registry-plugin" % "0.3.0")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.7")
addSbtPlugin("io.gatling" % "gatling-sbt" % "4.9.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("com.github.sbt" % "sbt-avro" % "3.4.3")
addSbtPlugin("org.galaxio" % "sbt-schema-registry-plugin" % "0.4.0")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.12")

libraryDependencies += "org.apache.avro" % "avro-compiler" % "1.11.1"
libraryDependencies += "org.apache.avro" % "avro-compiler" % "1.11.3"
2 changes: 2 additions & 0 deletions publish.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ ThisBuild / scmInfo := Some(
),
)

ThisBuild / scalaVersion := "2.13.14"

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

0 comments on commit 81ef0a4

Please sign in to comment.