summaryrefslogtreecommitdiff
path: root/qpid/java/perftests/visualisation-jfc
diff options
context:
space:
mode:
Diffstat (limited to 'qpid/java/perftests/visualisation-jfc')
-rw-r--r--qpid/java/perftests/visualisation-jfc/pom.xml46
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>