jmeter-maven-plugin declaration in my maven file looks as follows
<plugin>
<groupId>com.lazerycode.jmeter</groupId>
<artifactId>jmeter-maven-plugin</artifactId>
<version>1.10.1</version>
<executions>
<execution>
<id>jmeter-tests</id>
<phase>verify</phase>
<goals>
<goal>jmeter</goal>
</goals>
<configuration>
<jmeterPlugins>
<plugin>
<groupId>kg.apc</groupId>
<artifactId>jmeter-plugins</artifactId>
</plugin>
</jmeterPlugins>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>kg.apc</groupId>
<artifactId>jmeter-plugins</artifactId>
<version>1.3.1</version>
<type>pom</type>
</dependency>
</dependencies>
</plugin>
However on mvn clean install with maven 2, I get the following error
Error loading class 'com.lazerycode.jmeter.Plugin'
I have found a related issues here
JMeter Plugins via jmeter-maven-plugin failed to execute
and here
https://github.com/jmeter-maven-plugin/jmeter-maven-plugin/issues/92
But both links are using jmeter-plugins version 1.0.0. I am using jmeter-plugins version 1.3.1. Is this issue still around with mvn2 and jmeter-plugins.
Thanks!