Skip to content

Commit

Permalink
chore: upgrade gatling-shared-cli 0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
slandelle committed Apr 26, 2024
1 parent 7d0dca8 commit 6c40b47
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ githubPath := "gatling/gatling-sbt-plugin"
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.2.18" % Test,
"io.gatling" % "gatling-enterprise-plugin-commons" % "1.9.1",
"io.gatling" % "gatling-shared-cli" % "0.0.1"
"io.gatling" % "gatling-shared-cli" % "0.0.3"
)

scriptedLaunchOpts := {
Expand Down
20 changes: 10 additions & 10 deletions src/main/scala/io/gatling/sbt/utils/StartRecorderUtils.scala
Original file line number Diff line number Diff line change
Expand Up @@ -27,22 +27,22 @@ private[gatling] object StartRecorderUtils {
* List of all CLI options supported by the Recorder, in their "short" version.
*/
val shortRecorderOpts = Set(
RecorderCliOptions.SimulationsFolder.abbr,
RecorderCliOptions.ResourcesFolder.abbr,
RecorderCliOptions.ClassName.abbr,
RecorderCliOptions.Package.abbr,
RecorderCliOptions.Format.abbr
RecorderCliOptions.SimulationsFolder.shortName,
RecorderCliOptions.ResourcesFolder.shortName,
RecorderCliOptions.ClassName.shortName,
RecorderCliOptions.Package.shortName,
RecorderCliOptions.Format.shortName
)

/**
* List of all CLI options supported by the Recorder, in their "full" version.
*/
val fullRecorderOpts = Set(
RecorderCliOptions.SimulationsFolder.full,
RecorderCliOptions.ResourcesFolder.full,
RecorderCliOptions.ClassName.full,
RecorderCliOptions.Package.full,
RecorderCliOptions.Format.full
RecorderCliOptions.SimulationsFolder.longName,
RecorderCliOptions.ResourcesFolder.longName,
RecorderCliOptions.ClassName.longName,
RecorderCliOptions.Package.longName,
RecorderCliOptions.Format.longName
)

/** Parser matching the help option, in short and full version. */
Expand Down

0 comments on commit 6c40b47

Please sign in to comment.