Dear Wiki user, You have subscribed to a wiki page or wiki category on "Jakarta-jmeter Wiki" for change notification.
The following page has been changed by KartikeyaRao: http://wiki.apache.org/jakarta-jmeter/JMeterMavenPlugin The comment on the change is: Adding a section that explains how to change the reports directory ------------------------------------------------------------------------------ <configuration> <includes> <include>myTest1.jmx</include> - <include>myTest2jmx</include> + <include>myTest2.jmx</include> </includes> </configuration> </plugin> </plugins> </build> }}} + + * The default reports directory is 'jmeter-reports' which is created in the base folder ( usually where maven is run from ) + * Changing the reports directory : Add a reportDir setting to the plugin configuration. for example: {{{ + <build> + <plugins> + <plugin> + <groupId>org.apache.jmeter</groupId> + <artifactId>maven-jmeter-plugin</artifactId> + <configuration> + <includes> + <include>myTest1.jmx</include> + <include>myTest2.jmx</include> + </includes> + <reportDir>target/jmeter-reports</reportDir> + </configuration> + </plugin> + </plugins> + </build> }}} + * Run "mvn org.apache.jmeter:maven-jmeter-plugin:jmeter" to run the tests. - -- Tim McCune + -- Kartikeya Rao --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
