Skip to content

Commit

Permalink
Update to Apache JMeter 5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
DABURON Vincent committed Oct 12, 2022
1 parent 87a4edf commit 89e87d6
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 15 deletions.
16 changes: 10 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ The maven groupId, artifactId and version, this plugin is in the **Maven Central
```xml
<groupId>io.github.vdaburon</groupId>
<artifactId>jmeter-graph-tool-maven-plugin</artifactId>
<version>1.0</version>
<version>1.1</version>
```
Just include the plugin in your `pom.xml` and execute `mvn jmeter-graph:create-graph`.

Expand All @@ -76,7 +76,7 @@ Just include the plugin in your `pom.xml` and execute `mvn jmeter-graph:create-g
<plugin>
<groupId>io.github.vdaburon</groupId>
<artifactId>jmeter-graph-tool-maven-plugin</artifactId>
<version>1.0</version>
<version>1.1</version>
<configuration>
<!-- see Filter Results Tool in jmeter-plugins.org -->
<filterResultsTool>
Expand Down Expand Up @@ -244,7 +244,7 @@ You can also bind the graph-generation to a maven-phase, e.g. `verify`:
<plugin>
<groupId>io.github.vdaburon</groupId>
<artifactId>jmeter-graph-tool-maven-plugin</artifactId>
<version>1.0</version>
<version>1.1</version>
<executions>
<execution>
<id>create-graphs</id>
Expand Down Expand Up @@ -390,7 +390,7 @@ Use maven-phase `verify`
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.vdaburon.jmeter</groupId>
<artifactId>jm_maven</artifactId>
<version>1.2</version>
<version>1.3</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
Expand All @@ -407,7 +407,7 @@ Use maven-phase `verify`
<plugin>
<groupId>com.lazerycode.jmeter</groupId>
<artifactId>jmeter-maven-plugin</artifactId>
<version>3.5.0</version>
<version>3.6.1</version>
<executions>
<!-- Generate JMeter configuration -->
<execution>
Expand All @@ -433,6 +433,10 @@ Use maven-phase `verify`
-->
</executions>
<configuration>
<testPlanLibraries>
<!-- add libraries in JMETER_HOME/lib -->
<artifact>mysql:mysql-connector-java:8.0.30</artifact>
</testPlanLibraries>
<jmeterExtensions>
<artifact>kg.apc:jmeter-plugins-functions:2.1</artifact>
<artifact>kg.apc:jmeter-plugins-casutg:2.9</artifact>
Expand Down Expand Up @@ -470,7 +474,7 @@ Use maven-phase `verify`
<plugin>
<groupId>io.github.vdaburon</groupId>
<artifactId>jmeter-graph-tool-maven-plugin</artifactId>
<version>1.0</version>
<version>1.1</version>
<executions>
<execution>
<id>create-graphs</id>
Expand Down
18 changes: 9 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>io.github.vdaburon</groupId>
<artifactId>jmeter-graph-tool-maven-plugin</artifactId>
<version>1.0</version>
<version>1.1</version>
<packaging>maven-plugin</packaging>
<name>JMeter Graph and Tool Maven Plugin</name>
<description>A maven plugin to include features from jmeter-plugins.org for JMeterPluginsCMD Command Line Tool to create graphs, export csv files from jmeter result files and Filter Result tool.</description>
Expand All @@ -25,14 +25,14 @@
<id>vdaburon</id>
<name>Vincent DABURON</name>
<roles>
<role>Commiter</role>
<role>Committer</role>
</roles>
</developer>
<developer>
<id>mlex</id>
<name>Michael LEX</name>
<roles>
<role>Comitter until september 2021 before the fork </role>
<role>Committer until september 2021 before the fork</role>
</roles>
</developer>
</developers>
Expand Down Expand Up @@ -65,7 +65,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jmeter.version>5.4.1</jmeter.version>
<jmeter.version>5.5</jmeter.version>
</properties>

<dependencies>
Expand All @@ -84,7 +84,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -95,7 +95,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.8.0</version>
<version>2.11.0</version>
</dependency>

<!-- JMeter dependencies -->
Expand Down Expand Up @@ -160,7 +160,7 @@
<dependency>
<groupId>kg.apc</groupId>
<artifactId>jmeter-plugins-cmn-jmeter</artifactId>
<version>0.6</version>
<version>0.7</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -246,7 +246,7 @@
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<version>1.6.13</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
Expand All @@ -257,7 +257,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.6.1</version>
<version>3.6.4</version>
<executions>
<execution>
<id>default-descriptor</id>
Expand Down

0 comments on commit 89e87d6

Please sign in to comment.