summaryrefslogtreecommitdiffstats
path: root/infra/it/benchmark/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'infra/it/benchmark/pom.xml')
-rw-r--r--infra/it/benchmark/pom.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/infra/it/benchmark/pom.xml b/infra/it/benchmark/pom.xml
index 54ed6e1b8..8f9eabc56 100644
--- a/infra/it/benchmark/pom.xml
+++ b/infra/it/benchmark/pom.xml
@@ -59,6 +59,12 @@
<artifactId>honeycomb-test-model</artifactId>
<version>${project.version}</version>
</dependency>
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-csv</artifactId>
+ <version>1.4</version>
+ </dependency>
+
</dependencies>
<build>
@@ -129,6 +135,19 @@
</arguments>
</configuration>
</execution>
+ <execution>
+ <id>benchmark-post-processing</id>
+ <phase>test</phase>
+ <goals>
+ <goal>java</goal>
+ </goals>
+ <configuration>
+ <mainClass>io.fd.honeycomb.benchmark.format.BenchmarkOutputFormatter</mainClass>
+ <arguments>
+ <argument>${project.build.directory}/benchmark.csv</argument>
+ </arguments>
+ </configuration>
+ </execution>
</executions>
</plugin>
</plugins>