From 1d6c3cf1bf0b5d8b7b85e5385fbd4124925eb69f Mon Sep 17 00:00:00 2001 From: Mark Collin <1205116+Ardesco@users.noreply.github.com> Date: Tue, 30 Mar 2021 21:44:09 +0100 Subject: [PATCH] #382 Change property to set selectedConfiguration to selectConfiguration --- CHANGELOG.md | 2 +- .../java/com/lazerycode/jmeter/mojo/AbstractJMeterMojo.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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; //------------------------------------------------------------------------------------------------------------------