Skip to content

Commit

Permalink
fix: repair all links to the documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
notdryft committed Sep 20, 2024
1 parent 942d029 commit 0086373
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/main/scala/io/gatling/sbt/GatlingKeys.scala
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ object GatlingKeys {
s"May be configured using `$systemProperty` system property"

private val documentationReference =
"See https://gatling.io/docs/gatling/reference/current/extensions/sbt_plugin/#working-with-gatling-enterprise-cloud for more information"
"See https://docs.gatling.io/reference/integrations/build-tools/sbt-plugin/#running-your-simulations-on-gatling-enterprise-cloud for more information"

val enterpriseUrl = settingKey[URL]("URL of Gatling Enterprise.")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ object EnterprisePluginTask {

if (apiToken.isEmpty) {
logger.error(
s"""An API token is required to call the Gatling Enterprise server; see https://gatling.io/docs/enterprise/cloud/reference/admin/api_tokens/ and create a token with the role 'Configurer'.
s"""An API token is required to call the Gatling Enterprise server; see https://docs.gatling.io/reference/execute/cloud/admin/api-tokens/ and create a token with the role 'Configurer'.
|You can then set your API token's value in the environment variable ${ConfigurationConstants.ApiToken.ENV_VAR}, pass it with -D${ConfigurationConstants.ApiToken.SYS_PROP}=<apiToken>, or add the configuration to your SBT settings, e.g.:
|${config.id} / enterpriseApiToken := MY_API_TOKEN_VALUE""".stripMargin
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ object EnterpriseSettings {
s"""Plugin "io.gatling.frontline" % "sbt-frontline" is no longer needed, its functionality is now included in "io.gatling" % "gatling-sbt".
|Please remove "io.gatling.frontline" % "sbt-frontline" from your plugins.sbt configuration file.
|Please use the Gatling / enterprisePackage task instead of Test / assembly (or GatlingIt / enterprisePackage instead of It / assembly).
|See https://gatling.io/docs/gatling/reference/current/extensions/sbt_plugin/ for more information.""".stripMargin
|See https://docs.gatling.io/reference/integrations/build-tools/sbt-plugin/ for more information.""".stripMargin
)
}
state
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class TaskEnterprisePackage(config: Configuration) {
streams.value.log.warn(
s"""Task ${config.id} / assembly is deprecated and will be removed in a future version.
|Please use $newCommand instead.
|See https://gatling.io/docs/gatling/reference/current/extensions/sbt_plugin/ for more information.""".stripMargin
|See https://docs.gatling.io/reference/integrations/build-tools/sbt-plugin/ for more information.""".stripMargin
)
},
buildEnterprisePackage
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class TaskEnterpriseUpload(config: Configuration, enterprisePackage: TaskEnterpr
Try {
if (settingPackageId.isEmpty && settingSimulationId.isEmpty) {
logger.error(
s"""A package ID is required to upload a package on Gatling Enterprise; see https://gatling.io/docs/enterprise/cloud/reference/user/package_conf/ , create a package and copy its ID.
s"""A package ID is required to upload a package on Gatling Enterprise; see https://docs.gatling.io/reference/execute/cloud/user/package-conf/ , create a package and copy its ID.
|You can then set your package ID value by passing it with -D${ConfigurationConstants.UploadOptions.PackageId.SYS_PROP}=<packageId>, or add the configuration to your SBT settings, e.g.:
|${config.id} / enterprisePackageId := MY_PACKAGE_ID
|
Expand Down

0 comments on commit 0086373

Please sign in to comment.