您应该可以使用Maven Exec Plugin执行此操作。对于我的项目,我选择制作一个可以使用 maven 命令运行的基准配置文件mvn compile -P benchmarks
。
要配置这样的内容,您可以将以下内容添加到您的中,使用标签pom.xml
将类路径的范围指定为测试:<classpathScope>
<profiles>
<profile>
<id>benchmarks</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<id>caliper</id>
<phase>compile</phase>
<goals>
<goal>java</goal>
</goals>
<configuration>
<classpathScope>test</classpathScope>
<mainClass>com.google.caliper.runner.CaliperMain</mainClass>
<commandlineArgs>com.stackoverflow.BencharkClass,com.stackoverflow.AnotherBenchmark</commandlineArgs>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
或者,如果您想为 caliper 指定很多选项,使用<arguments>
标签可能更容易:
<executions>
<execution>
<id>caliper</id>
<phase>compile</phase>
<goals>
<goal>java</goal>
</goals>
<configuration>
<classpathScope>test</classpathScope>
<mainClass>com.google.caliper.runner.CaliperMain</mainClass>
<arguments>
<argument>com.stackoverflow.BencharkClass</argument>
<argument>--instrument</argument>
<argument>runtime</argument>
<argument>-Cinstrument.allocation.options.trackAllocations=false</argument>
</arguments>
</configuration>
</execution>
</executions>
更多配置选项(-Cinstrument.allocation.options.trackAllocations
如上)可在此处找到,更多运行时选项(--instrument
如上)可在此处找到。
然后,如果您使用的是 Eclipse m2 Maven 插件,您可以右键单击您的项目文件夹并在输入框中选择并输入Run as... -> Maven Build...
类似的内容,然后在输入框中单击,您应该会在 Eclipse 控制台中看到输出。clean install
Goals
benchmarks
Profiles
Run
重要的是要注意,我通过检查源代码使用了 Caliper 的本地快照构建git clone https://code.google.com/p/caliper/
,这是在本文发布时推荐的,以便利用最新的 API。