I\'m trying to get started with JMH under Eclipse. I can build a jar to execute from the command line but would also like me be able to run it directly within Eclipse for ease o
I run JMH tests in Eclipse all the time (for debug purposes), but I run maven build separately before running tests, while tests are executed as a Java application:
Step 1: build Maven project
clean install
(this step can also be done in command line by running the same goals)
Step 2: run tests
Main - org.openjdk.jmh
or the main you created