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 81ef0a4 commit 132be41
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
5 changes: 2 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@ resolvers ++= Seq(
// need for load sbt-schema-registry-plugin dependencies
"Confluent" at "https://packages.confluent.io/maven/",
)
libraryDependencies += "org.apache.avro" % "avro-compiler" % "1.11.3"

addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
addSbtPlugin("io.gatling" % "gatling-sbt" % "4.9.0")
addSbtPlugin("io.gatling" % "gatling-sbt" % "4.7.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.3"
3 changes: 2 additions & 1 deletion publish.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ ThisBuild / developers := List(
)

// Remove all additional repository other than Maven Central from POM
ThisBuild / publishTo := {
ThisBuild / pomIncludeRepository := { _ => false }
ThisBuild / publishTo := {
val nexus = "https://s01.oss.sonatype.org/"
if (isSnapshot.value) Some("snapshots" at nexus + "content/repositories/snapshots")
else Some("releases" at nexus + "service/local/staging/deploy/maven2")
Expand Down

0 comments on commit 132be41

Please sign in to comment.