Commit bc7c6aa4 authored by Dave Syer's avatar Dave Syer

Print MAVEN_OPTS=-noverify for copy-pasters

parent a122f3e0
......@@ -110,7 +110,7 @@ public class RunMojo extends AbstractMojo {
getLog().info("Attaching agent: " + this.agent);
if (this.noverify != null && this.noverify && !AgentAttacher.hasNoVerify()) {
throw new MojoExecutionException(
"The JVM must be started with -noverify for this agent to work. You can use MAVEN_OPTS to add that flag.");
"The JVM must be started with -noverify for this agent to work. You can use MAVEN_OPTS=-noverify to add that flag.");
}
AgentAttacher.attach(this.agent);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment