0

Caliper を Maven で動作させようとしていますが、まだ Caliper ベンチマーク テストを正常に実行できていません。

キャリパーのバージョン: 1.0-beta-1

私のベンチマーク:

public class MyXercesSAXHandlerBenchmark extends Benchmark{

    @Param({"10", "100", "1000", "10000"}) private int length;


    public void timeNanoTime(int reps) {
        for (int i = 0; i < reps; i++) {
            System.nanoTime();
        }
    }

    public static void main(String[] args) {
        CaliperMain.main(MyXercesSAXHandlerBenchmark.class, args);
    }
}

私のmaven pom.xmlには次のものがあります:

<profiles>
    <profile>
        <id>benchmarks</id>
        <build>
            <plugins>
                <plugin>
                    <groupId>org.codehaus.mojo</groupId>
                    <artifactId>exec-maven-plugin</artifactId>
                    <version>1.1</version>
                    <executions>
                        <execution>
                            <id>caliper</id>
                            <phase>compile</phase>
                            <goals>
                                <goal>java</goal>
                            </goals>
                            <configuration>
                                <classpathScope>test</classpathScope>
                                <mainClass>my.path.to.benchmark.MyXercesSAXHandlerBenchmark</mainClass>
                                <arguments>


                                </arguments>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </build>
    </profile>
</profiles>

私は走った:

mvn clean install mvn compile -P ベンチマーク -e -X

Caused by: org.apache.maven.plugin.MojoExecutionException: An exception occured while executing the Java class. The specified mainClass doesn't contain a main method with appropriate signature.
    at org.codehaus.mojo.exec.ExecJavaMojo.execute(ExecJavaMojo.java:345)
    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:101)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:209)
    ... 19 more
Caused by: java.lang.Exception: The specified mainClass doesn't contain a main method with appropriate signature.
    at org.codehaus.mojo.exec.ExecJavaMojo$1.run(ExecJavaMojo.java:294)
    at java.lang.Thread.run(Thread.java:680)
Caused by: java.lang.NoSuchMethodException: com.google.caliper.runner.CaliperMain.main([Ljava.lang.String;)
    at java.lang.Class.getMethod(Class.java:1632)
    at org.codehaus.mojo.exec.ExecJavaMojo$1.run(ExecJavaMojo.java:283)
    ... 1 more
4

1 に答える 1

0

maven-exec-pluginでは動作しませ1.0-beta-1ん。もちろん、動作するより後6d05814727e8b119651247952dedf4ab321d890aのリビジョンからキャリパーをビルドする必要があります。HEAD

于 2014-01-12T06:36:28.340 に答える