Skip to content

Commit

Permalink
Support JMeter 5.2.1
Browse files Browse the repository at this point in the history
This resolves #346
  • Loading branch information
pmouawad committed Nov 27, 2019
1 parent 49cd8fb commit c5f5e6b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,7 @@

### Enhancements ###

* Issue [346](https://github.com/jmeter-maven-plugin/jmeter-maven-plugin/issues/346) Support JMeter 5.2.1
* Issue [230](https://github.com/jmeter-maven-plugin/jmeter-maven-plugin/issues/230) You can now generate multiple configuration profiles that can be bound to specific test executions.
* Issue [335](https://github.com/jmeter-maven-plugin/jmeter-maven-plugin/issues/335) You can now use the command line property `-Djmeter.version=5.0` to specify a version of JMeter to be used to build/run the plugin. Changes to the list of expected libraries will still need modifications to the POM.

Expand Down
Expand Up @@ -19,6 +19,7 @@ public class ArtifactHelpers {
static final String JMETER_GROUP_ID = "org.apache.jmeter";
static final List<String> JMETER_ARTIFACT_NAMES = Arrays.asList(
"ApacheJMeter",
"ApacheJMeter_bolt",
"ApacheJMeter_components",
"ApacheJMeter_config",
"ApacheJMeter_core",
Expand Down
Expand Up @@ -66,7 +66,7 @@ public class ConfigureJMeterMojo extends AbstractJMeterMojo {
* if you change this version number the list of artifacts required to run JMeter may change.
* If this happens you will need to override the &lt;jmeterArtifacts&gt; element.
*/
@Parameter(property = "jmeter.version", defaultValue = "5.1.1")
@Parameter(property = "jmeter.version", defaultValue = "5.2.1")
private String jmeterVersion;

/**
Expand Down

0 comments on commit c5f5e6b

Please sign in to comment.