Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.40.0
0.41.0
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// dealing with. Do not mess with the `def {variableName}` part of the following
// lines, only change the versions we rely upon.

def galasaVersion = '0.40.0'
def galasaVersion = '0.41.0'

repositories {
gradlePluginPortal()
Expand All @@ -28,7 +28,7 @@ repositories {
apply plugin: 'java'
dependencies {
// Use dev.galasa.platform to obtain the versions
implementation platform('dev.galasa:dev.galasa.platform:0.40.0')
implementation platform('dev.galasa:dev.galasa.platform:0.41.0')
// We need the galasa-boot jar so we can launch tests in a local JVM
implementation 'dev.galasa:galasa-boot'
// We need the openapi generator to turn a yaml file into go client stubs,
Expand Down
2 changes: 1 addition & 1 deletion docs/generated/galasactl_runs_submit_local.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ galasactl runs submit local [flags]
--debug When set (or true) the debugger pauses on startup and tries to connect to a Java debugger. The connection is established using the --debugMode and --debugPort values.
--debugMode string The mode to use when the --debug option causes the testcase to connect to a Java debugger. Valid values are 'listen' or 'attach'. 'listen' means the testcase JVM will pause on startup, waiting for the Java debugger to connect to the debug port (see the --debugPort option). 'attach' means the testcase JVM will pause on startup, trying to attach to a java debugger which is listening on the debug port. The default value is 'listen' but can be overridden by the 'galasactl.jvm.local.launch.debug.mode' property in the bootstrap file, which in turn can be overridden by this explicit parameter on the galasactl command.
--debugPort uint32 The port to use when the --debug option causes the testcase to connect to a java debugger. The default value used is 2970 which can be overridden by the 'galasactl.jvm.local.launch.debug.port' property in the bootstrap file, which in turn can be overridden by this explicit parameter on the galasactl command.
--galasaVersion string the version of galasa you want to use to run your tests. This should match the version of the galasa obr you built your test bundles against. (default "0.40.0")
--galasaVersion string the version of galasa you want to use to run your tests. This should match the version of the galasa obr you built your test bundles against. (default "0.41.0")
--gherkin strings Gherkin feature file URL. Should start with 'file://'.
-h, --help Displays the options for the 'runs submit local' command.
--localMaven string The url of a local maven repository are where galasa bundles can be loaded from on your local file system. Defaults to your home .m2/repository file. Please note that this should be in a URL form e.g. 'file:///Users/myuserid/.m2/repository', or 'file://C:/Users/myuserid/.m2/repository'
Expand Down