diff options
| author | Keith Wall <kwall@apache.org> | 2014-12-24 12:01:15 +0000 |
|---|---|---|
| committer | Keith Wall <kwall@apache.org> | 2014-12-24 12:01:15 +0000 |
| commit | ef98f2d05fabd0cf8dceb5f02394be00345bf30c (patch) | |
| tree | 7039e3adfaa2dd550b618210d1704c322cdc6dff /qpid/java/perftests/visualisation-jfc | |
| parent | a4c8c2bb51bda9f724d21e68546c7a23727e33bd (diff) | |
| download | qpid-python-ef98f2d05fabd0cf8dceb5f02394be00345bf30c.tar.gz | |
QPID-6284: [Java Broker Tests] Add new chart defintion for the newSSL perf test.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1647766 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/perftests/visualisation-jfc')
| -rw-r--r-- | qpid/java/perftests/visualisation-jfc/pom.xml | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/qpid/java/perftests/visualisation-jfc/pom.xml b/qpid/java/perftests/visualisation-jfc/pom.xml index e99bde0102..2d0ccb60c3 100644 --- a/qpid/java/perftests/visualisation-jfc/pom.xml +++ b/qpid/java/perftests/visualisation-jfc/pom.xml @@ -120,6 +120,52 @@ <skip>true</skip> </configuration> </plugin> + + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <version>1.3.2</version> + <executions> + <execution> + <goals> + <goal>java</goal> + </goals> + </execution> + </executions> + <configuration> + <mainClass>org.apache.qpid.disttest.charting.ChartingUtil</mainClass> + <includePluginDependencies>true</includePluginDependencies> + <arguments> + <argument>chart-defs=${basedir}/../etc/chartdefs</argument> + </arguments> + <systemProperties> + <systemProperty> + <key>log4j.configuration</key><value>file:log4j.properties</value> + </systemProperty> + <systemProperty> + <key>java.awt.headless</key><value>true</value> + </systemProperty> + <systemProperty> + <key>csvCurrentDir</key><value>${basedir}/../target/data/current</value> + </systemProperty> + <systemProperty> + <key>csvBaselineDir</key><value>${basedir}/../target/data/baseline</value> + </systemProperty> + </systemProperties> + </configuration> + <dependencies> + <dependency> + <groupId>net.sourceforge.csvjdbc</groupId> + <artifactId>csvjdbc</artifactId> + <version>${csvjdbc-version}</version> + </dependency> + <dependency> + <groupId>jfree</groupId> + <artifactId>jfreechart</artifactId> + <version>${jfreechart-version}</version> + </dependency> + </dependencies> + </plugin> </plugins> </build> |
