'JMH - run without Maven
I am trying to setup the very basic JMH test suite but I cannot get through to generate the jar with the tests... I have annotation processor on the classpath, with jmh core too, one simple class but when I run Main.main() there are no jars being generated (running it from IntelliJ). Is there some parameter/option I am missing when running?
Solution 1:[1]
I think you cannot not generate benchmarks.jar without maven-shade-plugin.
If you still want to run from the command line but without benchmarks.jar you can copy the command IDEA executes from the console and run it from terminal.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Sergey Tsypanov |
