Skip to content

Commit

Permalink
maven example with mvn exec:exec because this tool finish with System…
Browse files Browse the repository at this point in the history
….exit()
  • Loading branch information
DABURON Vincent committed Jul 11, 2023
1 parent b87a988 commit 77147ae
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,14 +154,19 @@ or individual launch `mvn -DjmeterReportFile=synthesis.csv -DkpiFile=kpi.csv -Dj
<version>1.2.1</version>
<executions>
<execution>
<!-- individual launch : mvn exec:exec@create_junit-report-kpi-from-jmeter-report -->
<id>create_junit-report-kpi-from-jmeter-report</id>
<phase>verify</phase>
<goals>
<goal>java</goal>
<goal>exec</goal>
</goals>
<configuration>
<mainClass>io.github.vdaburon.jmeter.utils.reportkpi.JUnitReportFromJMReportCsv</mainClass>
<arguments>
<argument>-classpath</argument>
<!-- automatically creates the classpath using all project dependencies,
also adding the project build directory -->
<classpath/>
<argument>io.github.vdaburon.jmeter.utils.reportkpi.JUnitReportFromJMReportCsv</argument>
<argument>-kpiFile</argument>
<argument>${project.build.directory}/jmeter/testFiles/${kpiFile}</argument>
<argument>-csvJMReport</argument>
Expand Down

0 comments on commit 77147ae

Please sign in to comment.