Run the benchmark via the maven profile "benchmarks":
mvn -P benchmarks clean test
Or run them customized:
mvn -P benchmarks -DwarmupIterations=2 -DmeasurementIterations=5 -Dforks=1 clean test
Origin pull request: #483.
14 lines
295 B
XML
14 lines
295 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<configuration>
|
|
|
|
<appender name="console" class="ch.qos.logback.core.ConsoleAppender">
|
|
<encoder>
|
|
<pattern>%d %5p %40.40c:%4L - %m%n</pattern>
|
|
</encoder>
|
|
</appender>
|
|
|
|
<root level="error">
|
|
<appender-ref ref="console" />
|
|
</root>
|
|
|
|
</configuration> |