Skip to content

Commit

Permalink
Support Apache JMeter 4.0
Browse files Browse the repository at this point in the history
This closes #272
  • Loading branch information
pmouawad committed Feb 11, 2018
1 parent 0229970 commit 632ca43
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<required.maven.version>3.1.1</required.maven.version>
<supported.java.version>1.8</supported.java.version>
<supported.jmeter.version>3.3</supported.jmeter.version>
<supported.jmeter.version>4.0</supported.jmeter.version>

<!--Dependency versions-->
<aether.version>1.1.0</aether.version>
Expand Down
5 changes: 3 additions & 2 deletions src/it/remote-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<jmeter.version>4.0</jmeter.version>
</properties>

<repositories>
Expand All @@ -28,7 +29,7 @@
<dependency>
<groupId>org.apache.jmeter</groupId>
<artifactId>ApacheJMeter_core</artifactId>
<version>3.3</version>
<version>${jmeter.version}</version>
<exclusions>
<exclusion>
<groupId>org.apache.tika</groupId>
Expand All @@ -39,7 +40,7 @@
<dependency>
<groupId>org.apache.jmeter</groupId>
<artifactId>ApacheJMeter_java</artifactId>
<version>3.3</version>
<version>${jmeter.version}</version>
<exclusions>
<exclusion>
<groupId>org.apache.tika</groupId>
Expand Down
Binary file added src/it/remote-test/src/test/conf/rmi_keystore.jks
Binary file not shown.
5 changes: 3 additions & 2 deletions src/it/test-plugins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<jmeter.version>4.0</jmeter.version>
</properties>

<repositories>
Expand All @@ -28,7 +29,7 @@
<dependency>
<groupId>org.apache.jmeter</groupId>
<artifactId>ApacheJMeter_core</artifactId>
<version>3.3</version>
<version>${jmeter.version}</version>
<exclusions>
<exclusion>
<groupId>org.apache.tika</groupId>
Expand All @@ -39,7 +40,7 @@
<dependency>
<groupId>org.apache.jmeter</groupId>
<artifactId>ApacheJMeter_java</artifactId>
<version>3.3</version>
<version>${jmeter.version}</version>
<exclusions>
<exclusion>
<groupId>org.apache.tika</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,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(defaultValue = "3.3")
@Parameter(defaultValue = "4.0")
private String jmeterVersion;

/**
Expand Down

0 comments on commit 632ca43

Please sign in to comment.