Hi,

The Mojo team is pleased to announce the first beta-release of the 
chronos-jmeter version 1.0-beta-1 and chronos-report version 1.0-beta-1. 


Chronos is a tool for testing the performance of Your project inside a maven 
build environment.
It enables You to test performance via JMeter, validate that relevant 
performance goals have been met and create nice visualizations of the latest 
and historical testruns.

This will allow a developer to integrate performancetesting into an existing 
project and performancetest continuously, probably as part of a nightly build.
This will help him to pinpoint performance problems: If You know immediately 
when a performance problem is introduced, it is much easier to find out which 
change in the codebase caused the performance degradation.

Chronos is logically separated into a testing and a reporting part.


Project url: http://mojo.codehaus.org/chronos


To use these plugins, simply specify the version in your project's plugin 
configuration: 
          <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>chronos-jmeter-maven-plugin</artifactId>
            <version>1.0-beta-1</version>
            <configuration>...</configuration>
            <executions>
              <execution>
                <goals>
                  <goal>jmeter</goal>
                  <goal>check</goal>
                  <goal>savehistory</goal>
                </goals>
              </execution>
            </executions>
          </plugin>

      <!-- maven 3 syntax -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-site-plugin</artifactId>
        <version>3.0</version>
        <configuration>
          <reportPlugins>
            ...
            <plugin>
              <groupId>org.codehaus.mojo</groupId>
              <artifactId>chronos-report-maven-plugin</artifactId>
              <version>1.0-beta-1</version>
              <configuration>
              ...
              </configuration>
              <reports>
                <report>report</report>
                <report>historyreport</report>
              </reports>
            </plugin>
          </reportPlugins>
        </configuration>
      </plugin>

See the project site for further details and samples.


Release Notes:
- First release containing support for testing with jmeter and creating reports

Enjoy,

The Mojo team.
 
Kent Sølvsten



---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to