diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a89e45f..7b64a078 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,7 @@ ### Bug Fixes ### -* Issue [382](https://github.com/jmeter-maven-plugin/jmeter-maven-plugin/issues/382) Add the ability to specify an execution ID on the command line +* Issue [382](https://github.com/jmeter-maven-plugin/jmeter-maven-plugin/issues/382) Add the ability to specify a selected configuration on the command line ## Version 3.3.0 Release Notes (23 january 2021) diff --git a/src/main/java/com/lazerycode/jmeter/mojo/AbstractJMeterMojo.java b/src/main/java/com/lazerycode/jmeter/mojo/AbstractJMeterMojo.java index 11b5fdb8..f9955420 100644 --- a/src/main/java/com/lazerycode/jmeter/mojo/AbstractJMeterMojo.java +++ b/src/main/java/com/lazerycode/jmeter/mojo/AbstractJMeterMojo.java @@ -202,7 +202,7 @@ public abstract class AbstractJMeterMojo extends AbstractMojo { /** * The filename used to store the results config */ - @Parameter(property = "executionID" ,defaultValue = DEFAULT_CONFIG_EXECUTION_ID) + @Parameter(property = "selectConfiguration" ,defaultValue = DEFAULT_CONFIG_EXECUTION_ID) protected String selectedConfiguration; //------------------------------------------------------------------------------------------------------------------