Package biz.gabrys.maven.plugin.util.timer

Contains types responsible for counting the execution time.

Example:

 public class ExampleMojo extends AbstractMojo {

     public void execute() {
         Timer timer = SystemTimer.getStartedTimer();

         // logic
         ...

         getLog().info("Finished in " + timer.stop());
     }
 }