Is it possible to use the jmeter plugin in Maven.

1,078 views
Skip to first unread message

nitin gurram

unread,
Apr 29, 2013, 11:22:41 AM4/29/13
to jmeter-...@googlegroups.com
I am using TeamCity to run Jmeter Maven. I want to make use of the jmeter plugin.

I got the following.but, from http://search.maven.org/#artifactdetails|kg.apc|jmeter-plugins|1.0.0|jar

<dependency>
    <groupId>kg.apc</groupId>
    <artifactId>jmeter-plugins</artifactId>
    <version>1.0.0</version>
</dependency>







But, does any one know under which goal we have to run this?

Or is there a better way to run jmeter in TeamCity.

Andrey Pohilko

unread,
Apr 29, 2013, 11:43:35 AM4/29/13
to jmeter-...@googlegroups.com
Jmeter plugins in maven is just a library for jmeter. It has no goal itself. If you want to run load tests, you should search for corresponding info. Plugins are useless without JMeter, sorry

понедельник, 29 апреля 2013 г., 19:22:41 UTC+4 пользователь nitin gurram написал:

nitin gurram

unread,
Apr 30, 2013, 3:00:43 AM4/30/13
to jmeter-...@googlegroups.com

Thanks, But is it possible to incorporate the plugin along with jmeter to run in maven?
Message has been deleted

Andrey Pohilko

unread,
Apr 30, 2013, 2:40:35 PM4/30/13
to jmeter-...@googlegroups.com
There is maven artifacts published for JMeter-plugins, you can add them to pom dependencies.

вторник, 30 апреля 2013 г., 11:00:43 UTC+4 пользователь nitin gurram написал:

nitin gurram

unread,
May 6, 2013, 7:29:46 AM5/6/13
to jmeter-...@googlegroups.com
I have the following in my POM can you please point out on where I have to add

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>XXXXX</groupId>
        <artifactId>XXXXXt</artifactId>
        <version>1.1</version>
    </parent>
    <groupId>XXXXXX</groupId>
    <artifactId>cache-warming</artifactId>
    <version>1.0.0-SNAPSHOT</version>
    <packaging>jar</packaging>
    <name>Cache warmer</name>
    <properties>
        <host>default</host>
    </properties>   
    <scm>
        <connection>scm:svn:http://vcs.XXXXXX/cachewarming/trunk</connection>
        <developerConnection>scm:svn:http://vcs2.XXXXXX/trunk</developerConnection>
    </scm>   
        <build>
        <plugins>
            <plugin>
                <groupId>com.lazerycode.jmeter</groupId>
                <artifactId>jmeter-maven-plugin</artifactId>
                <version>1.8.1</version>
                <executions>
                    <execution>
                        <id>jmeter-tests</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>jmeter</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                        <propertiesUser>
                            <host>${host}</host>
                        </propertiesUser>
                </configuration>
                   
            </plugin>
        </plugins>
   
    </build>
</project>

Andrey Pohilko

unread,
May 7, 2013, 5:29:24 AM5/7/13
to jmeter-...@googlegroups.com
Ok, now I understand what you have. You should add one more xml element before <build> and have in like this:
<dependencies>
        <dependency>
            <groupId>kg.apc</groupId>
            <artifactId>jmeter-plugins</artifactId>
            <version>1.0.0</version>
        </dependency>
 </dependencies>
 
This will tell maven that there is additional lib required by your pom. Try it.

понедельник, 6 мая 2013 г., 15:29:46 UTC+4 пользователь nitin gurram написал:

nitin gurram

unread,
May 13, 2013, 11:23:01 AM5/13/13
to jmeter-...@googlegroups.com
Hi,

I have tried it a couple of times but I end up with this error


[INFO]
[INFO] --- maven-jar-plugin:2.3.2:jar (default-jar) @ cache-warming ---
[WARNING] JAR will be empty - no content was marked for inclusion!
[INFO] Building jar: C:\svnwork\projects\joshua\tools\ecom-cachewarming\trunk\target\cache-warming-1.0.0-SNAPSHOT.jar
[INFO]
[INFO] --- jmeter-maven-plugin:1.8.1:jmeter (jmeter-tests) @ cache-warming ---
[INFO]
[INFO] -------------------------------------------------------
[INFO]  P E R F O R M A N C E    T E S T S
[INFO] -------------------------------------------------------
[INFO]
[INFO]
[INFO] Proxy server is not being used.

[info]
[debug] JMeter is called with the following command line arguments: -n -t C:\svnwork\projects\joshua\tools\ecom-cachew
ming\trunk\src\test\jmeter\SimpleTest.jmx -l C:\svnwork\projects\joshua\tools\ecom-cachewarming\trunk\target\jmeter\re
lts\20130513-SimpleTest.jtl -d C:\svnwork\projects\joshua\tools\ecom-cachewarming\trunk\target\jmeter
[info] Executing test: SimpleTest.jmx
[info] Completed Test: SimpleTest.jmx
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 6.267s
[INFO] Finished at: Mon May 13 17:14:55 CEST 2013
[INFO] Final Memory: 17M/218M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal com.lazerycode.jmeter:jmeter-maven-plugin:1.8.1:jmeter (jmeter-tests) on project cache-
rming: C:\svnwork\projects\joshua\tools\ecom-cachewarming\trunk\target\jmeter\results\20130513-SimpleTest.jtl (The sys
m cannot find the file specified) -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException.


this is how my pom looks like
                  <dependencies>
                    <dependency>

                       <groupId>com.lazerycode.jmeter</groupId>
                       <artifactId>jmeter-maven-plugin</artifactId>
                       <version>1.8.1</version>
                  </dependency>
           </dependencies>

nitin gurram

unread,
May 13, 2013, 11:28:19 AM5/13/13
to jmeter-...@googlegroups.com
I get the following error

[INFO]
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ cache-warming ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.10:test (default-test) @ cache-warming ---
[INFO] No tests to run.
[INFO] Surefire report directory: C:\svnwork\projects\joshua\tools\ecom-cachewarming\trunk\target\surefire-reports

-------------------------------------------------------

 T E S T S
-------------------------------------------------------

Results :

Tests run: 0, Failures: 0, Errors: 0, Skipped: 0


[INFO]
[INFO] --- maven-jar-plugin:2.3.2:jar (default-jar) @ cache-warming ---
[WARNING] JAR will be empty - no content was marked for inclusion!
[INFO] Building jar: C:\svnwork\projects\joshua\tools\ecom-cachewarming\trunk\target\cache-warming-1.0.0-SNAPSHOT.jar
[INFO]
[INFO] --- jmeter-maven-plugin:1.8.1:jmeter (jmeter-tests) @ cache-warming ---
[INFO]
[INFO] -------------------------------------------------------
[INFO]  P E R F O R M A N C E    T E S T S
[INFO] -------------------------------------------------------
[INFO]
[INFO]
[INFO] Proxy server is not being used.

[info]
[debug] JMeter is called with the following command line arguments: -n -t C:\svnwork\projects\joshua\tools\ecom-cachew
ming\trunk\src\test\jmeter\SimpleTest.jmx -l C:\svnwork\projects\joshua\tools\ecom-cachewarming\trunk\target\jmeter\re
lts\20130513-SimpleTest.jtl -d C:\svnwork\projects\joshua\tools\ecom-cachewarming\trunk\target\jmeter
[info] Executing test: SimpleTest.jmx
[info] Completed Test: SimpleTest.jmx
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 3.641s
[INFO] Finished at: Mon May 13 17:25:34 CEST 2013
[INFO] Final Memory: 16M/156M

[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal com.lazerycode.jmeter:jmeter-maven-plugin:1.8.1:jmeter (jmeter-tests) on project cache-
rming: C:\svnwork\projects\joshua\tools\ecom-cachewarming\trunk\target\jmeter\results\20130513-SimpleTest.jtl (The sys
m cannot find the file specified) -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

my POM looks like this


<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</
modelVersion>
    <parent>
        <groupId>XXXXX</groupId>
        <artifactId>XXXXXt</artifactId>
        <version>1.1</version>
    </parent>
    <groupId>XXXXXX</groupId>
    <artifactId>cache-warming</artifactId>
    <version>1.0.0-SNAPSHOT</version>
    <packaging>jar</packaging>
    <name>Cache warmer</name>
    <properties>
        <host>default</host>
    </properties>   
    <scm>
        <connection>scm:svn:http://vcs.XXXXXX/cachewarming/trunk</connection>
        <developerConnection>scm:svn:http://vcs2.XXXXXX/trunk</developerConnection>
    </scm>
    <dependencies>
               <dependency>

                 <groupId>com.lazerycode.jmeter</groupId>
                 <artifactId>jmeter-maven-plugin</artifactId>
                 <version>1.8.1</version>
             </dependency>

           </dependencies>
        <build>
        <plugins>
            <plugin>
                <groupId>com.lazerycode.jmeter</groupId>
                <artifactId>jmeter-maven-plugin</artifactId>
                <version>1.8.1</version>
                <executions>
                    <execution>
                        <id>jmeter-tests</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>jmeter</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                        <propertiesUser>
                            <host>${host}</host>
                        </propertiesUser>
                </configuration>
                   
            </plugin>
        </plugins>
   
    </build>
</project>


On Tuesday, 7 May 2013 11:29:24 UTC+2, Andrey Pohilko wrote:

Andrey Pohilko

unread,
May 13, 2013, 3:16:27 PM5/13/13
to jmeter-...@googlegroups.com
Well, you did not add what I suggested into your pom.
Also make note that jmeter-maven-plugin is made by different people and I have no knowledge to troubleshoot it...

nitin gurram

unread,
May 14, 2013, 3:29:58 AM5/14/13
to jmeter-...@googlegroups.com
Hi,

I have tried with that and my pom looks like this now


<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>XXXXXX</groupId>
        <artifactId>XXXXXX-parent</artifactId>
        <version>1.1</version>
    </parent>
    <groupId>XXXXXXXX</groupId>

    <artifactId>cache-warming</artifactId>
    <version>1.0.0-SNAPSHOT</version>
    <packaging>jar</packaging>
    <name>Cache warmer</name>
    <properties>
        <host>default</host>
    </properties>   
    <scm>
        <connection>scm:svn:http://XXXXXXX.com/projects/XXXX/tools/hm.co-cachewarming/trunk</connection>
        <developerConnection>scm:svn:http://XXXXXXXXXX.com/projects/XXXX/tools/hm.co-cachewarming/trunk</developerConnection>
    </scm>   
    <dependencies>
        <dependency>

                <groupId>kg.apc</groupId>
                <artifactId>jmeter-plugins</artifactId>
                <version>1.0.0</version>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>com.lazerycode.jmeter</groupId>
                <artifactId>jmeter-maven-plugin</artifactId>
                <version>1.8.1</version>
                <executions>
                    <execution>
                        <id>jmeter-tests</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>jmeter</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                        <propertiesUser>
                            <host>${host}</host>
                        </propertiesUser>
                </configuration>
                   
            </plugin>
        </plugins>
   
    </build>
</project>

[INFO]
[INFO] --- maven-jar-plugin:2.3.2:jar (default-jar) @ cache-warming ---
[WARNING] JAR will be empty - no content was marked for inclusion!
[INFO]
[INFO] --- jmeter-maven-plugin:1.8.1:jmeter (jmeter-tests) @ cache-warming ---
[INFO]
[INFO] -------------------------------------------------------
[INFO]  P E R F O R M A N C E    T E S T S
[INFO] -------------------------------------------------------
[INFO]
[INFO]
[INFO] Proxy server is not being used.

[info]
[debug] JMeter is called with the following command line arguments: -n -t C:\svnwork\projects\joshua\tools\ecom-cachewar
ming\trunk\src\test\jmeter\SimpleTest.jmx -l C:\svnwork\projects\joshua\tools\ecom-cachewarming\trunk\target\jmeter\resu
lts\20130514-SimpleTest.jtl -d C:\svnwork\projects\joshua\tools\ecom-cachewarming\trunk\target\jmeter

[info] Executing test: SimpleTest.jmx
[info] Completed Test: SimpleTest.jmx
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 3.759s
[INFO] Finished at: Tue May 14 09:21:03 CEST 2013
[INFO] Final Memory: 16M/218M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal com.lazerycode.jmeter:jmeter-maven-plugin:1.8.1:jmeter (jmeter-tests) on project cache-wa
rming: C:\svnwork\projects\joshua\tools\ecom-cachewarming\trunk\target\jmeter\results\20130514-SimpleTest.jtl (The syste

m cannot find the file specified) -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
PS C:\svnwork\projects\joshua\tools\ecom-cachewarming\trunk>


This is how it looks when I run with mvn verify -X

[ERROR] Failed to execute goal com.lazerycode.jmeter:jmeter-maven-plugin:1.8.1:jmeter (jmeter-tests) on project cache-wa
rming: C:\svnwork\projects\joshua\tools\ecom-cachewarming\trunk\target\jmeter\results\20130514-SimpleTest.jtl (The syste

m cannot find the file specified) -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal com.lazerycode.jmeter:jmeter-maven-plugin
:1.8.1:jmeter (jmeter-tests) on project cache-warming: C:\svnwork\projects\joshua\tools\ecom-cachewarming\trunk\target\j
meter\results\20130514-SimpleTest.jtl (The system cannot find the file specified)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:217)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
        at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:84)
        at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:59)
        at org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBuild(LifecycleStarter.java:183)
        at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:161)
        at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:320)
        at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
        at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537)
        at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196)
        at org.apache.maven.cli.MavenCli.main(MavenCli.java:141)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:601)
        at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:290)
        at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:230)
        at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:409)
        at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:352)
Caused by: org.apache.maven.plugin.MojoExecutionException: C:\svnwork\projects\joshua\tools\ecom-cachewarming\trunk\targ
et\jmeter\results\20130514-SimpleTest.jtl (The system cannot find the file specified)
        at com.lazerycode.jmeter.JMeterMojo.parseTestResults(JMeterMojo.java:77)
        at com.lazerycode.jmeter.JMeterMojo.execute(JMeterMojo.java:51)
        at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:101)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:209)
        ... 19 more
[ERROR]

[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException




I have an error saying

nitin gurram

unread,
May 14, 2013, 6:31:59 AM5/14/13
to jmeter-...@googlegroups.com
Hi,

When I rerun in maven with -X

I see this in the middle of the log. There seems to be some difficulty in downloading hyperic:sigar:jar

[WARNING] The POM for kg.apc:perfmon:jar:1.0.0 is invalid, transitive dependencies (if any) will not be available: 1 problem was encountered while building the effective model for kg.apc:perfmon:1.0.0
[ERROR] 'dependencies.dependency.systemPath' for org.hyperic:sigar:jar must specify an absolute path but is ${basedir}/lib/sigar.jar @

Andrey Pohilko

unread,
May 17, 2013, 12:32:06 PM5/17/13
to jmeter-...@googlegroups.com
Well, it seems there is problems with maven artifacts. I'll fix them in the next release. Sorry for this bug.

вторник, 14 мая 2013 г., 14:31:59 UTC+4 пользователь nitin gurram написал:

nitin gurram

unread,
Jul 1, 2013, 10:45:17 AM7/1/13
to jmeter-...@googlegroups.com
Hi,

I want to know if the transitive dependency issue is fixed?

Thanks

Andrey Pohilko

unread,
Jul 2, 2013, 2:57:26 AM7/2/13
to jmeter-...@googlegroups.com
Yes, it was.

понедельник, 1 июля 2013 г., 18:45:17 UTC+4 пользователь nitin gurram написал:

Rajani Pagadala

unread,
Dec 14, 2015, 3:24:35 PM12/14/15
to jmeter-plugins
Hi Andrey,

When I execute the JMeter test from the Mvn throws the below error. I have attached the JMX file, Error file, POM file.

Please help me! It's a road block for me!

[INFO] Scanning for projects...
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building cc-rest-perf 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[WARNING] The POM for kg.apc:perfmon:jar:1.0.0 is invalid, transitive dependencies (if any) will not be available, enable debug logging for more details
[INFO] 
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ jmeter ---
[debug] execute contextualize
[WARNING] Using platform encoding (Cp1252 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory C:\gitrepository\cc-rest-perf\src\main\resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ jmeter ---
[WARNING] File encoding has not been set, using platform encoding Cp1252, i.e. build is platform dependent!
[INFO] Compiling 1 source file to C:\gitrepository\cc-rest-perf\target\classes
[INFO] 
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ jmeter ---
[debug] execute contextualize
[WARNING] Using platform encoding (Cp1252 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory C:\gitrepository\cc-rest-perf\src\test\resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ jmeter ---
[WARNING] File encoding has not been set, using platform encoding Cp1252, i.e. build is platform dependent!
[INFO] Compiling 1 source file to C:\gitrepository\cc-rest-perf\target\test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:2.14.1:test (default-test) @ jmeter ---
[INFO] 
[INFO] --- maven-jar-plugin:2.3.2:jar (default-jar) @ jmeter ---
[INFO] Building jar: C:\gitrepository\cc-rest-perf\target\jmeter-0.0.1-SNAPSHOT.jar
[INFO] 
[INFO] --- jmeter-maven-plugin:1.10.1:jmeter (jmeter-tests) @ jmeter ---
[INFO]  
[INFO] -------------------------------------------------------
[INFO]  P E R F O R M A N C E    T E S T S
[INFO] -------------------------------------------------------
[INFO]  
[INFO]  
[info]  
[debug] JMeter is called with the following command line arguments: -n -t C:\gitrepository\cc-rest-perf\src\test\jmeter\CC_REST.jmx -l C:\gitrepository\cc-rest-perf\target\jmeter\results\20151214-CC_REST.jtl -d C:\gitrepository\cc-rest-perf\target\jmeter -j C:\gitrepository\cc-rest-perf\target\jmeter\logs\CC_REST.jmx.log
[info] Executing test: CC_REST.jmx
[debug] Error in NonGUIDriver java.lang.IllegalArgumentException: Problem loading XML from:'C:\gitrepository\cc-rest-perf\src\test\jmeter\CC_REST.jmx', conversion error com.thoughtworks.xstream.converters.ConversionException: kg.apc.jmeter.threads.SteppingThreadGroup : kg.apc.jmeter.threads.SteppingThreadGroup
[debug] ---- Debugging information ----
[debug] message             : kg.apc.jmeter.threads.SteppingThreadGroup
[debug] cause-exception     : com.thoughtworks.xstream.mapper.CannotResolveClassException
[debug] cause-message       : kg.apc.jmeter.threads.SteppingThreadGroup
[debug] class               : org.apache.jorphan.collections.ListedHashTree
[debug] required-type       : org.apache.jorphan.collections.ListedHashTree
[debug] converter-type      : org.apache.jmeter.save.converters.HashTreeConverter
[debug] path                : /jmeterTestPlan/hashTree/hashTree/kg.apc.jmeter.threads.SteppingThreadGroup
[debug] line number         : 14
[debug] ------------------------------- : kg.apc.jmeter.threads.SteppingThreadGroup : kg.apc.jmeter.threads.SteppingThreadGroup
[debug] ---- Debugging information ----
[debug] message             : kg.apc.jmeter.threads.SteppingThreadGroup
[debug] cause-exception     : com.thoughtworks.xstream.mapper.CannotResolveClassException
[debug] cause-message       : kg.apc.jmeter.threads.SteppingThreadGroup
[debug] class               : org.apache.jorphan.collections.ListedHashTree
[debug] required-type       : org.apache.jorphan.collections.ListedHashTree
[debug] converter-type      : org.apache.jmeter.save.converters.HashTreeConverter
[debug] path                : /jmeterTestPlan/hashTree/hashTree/kg.apc.jmeter.threads.SteppingThreadGroup
[debug] line number         : 14
[debug] -------------------------------
[debug] message             : kg.apc.jmeter.threads.SteppingThreadGroup : kg.apc.jmeter.threads.SteppingThreadGroup
[debug] ---- Debugging information ----
[debug] message             : kg.apc.jmeter.threads.SteppingThreadGroup
[debug] cause-exception     : com.thoughtworks.xstream.mapper.CannotResolveClassException
[debug] cause-message       : kg.apc.jmeter.threads.SteppingThreadGroup
[debug] class               : org.apache.jorphan.collections.ListedHashTree
[debug] required-type       : org.apache.jorphan.collections.ListedHashTree
[debug] converter-type      : org.apache.jmeter.save.converters.HashTreeConverter
[debug] path                : /jmeterTestPlan/hashTree/hashTree/kg.apc.jmeter.threads.SteppingThreadGroup
[debug] line number         : 14
[debug] -------------------------------
[debug] cause-exception     : com.thoughtworks.xstream.converters.ConversionException
[debug] cause-message       : kg.apc.jmeter.threads.SteppingThreadGroup : kg.apc.jmeter.threads.SteppingThreadGroup
[debug] first-jmeter-class  : org.apache.jmeter.save.converters.HashTreeConverter.unmarshal(HashTreeConverter.java:67)
[debug] class               : org.apache.jmeter.save.ScriptWrapper
[debug] required-type       : org.apache.jorphan.collections.ListedHashTree
[debug] converter-type      : org.apache.jmeter.save.ScriptWrapperConverter
[debug] path                : /jmeterTestPlan/hashTree/hashTree/kg.apc.jmeter.threads.SteppingThreadGroup
[debug] line number         : 14
[debug] version             : 2.13 r1665067
[debug] -------------------------------
[info] Completed Test: CC_REST.jmx
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE



Thanks,
Raj
CC_REST.jmx.log
JMXfile.txt
pom.txt

Rajani Pagadala

unread,
Jan 19, 2016, 1:51:16 PM1/19/16
to jmeter-plugins
Never mind! I have figured it out!

christiand...@gmail.com

unread,
Feb 3, 2016, 3:54:17 PM2/3/16
to jmeter-plugins
Thank you so match!

bino...@gmail.com

unread,
Feb 22, 2016, 7:56:35 AM2/22/16
to jmeter-plugins
HI Rajani,

I am having the same problem. How did you fix it? Can you please help?

Thanks,

Rajani Pagadala

unread,
Feb 22, 2016, 7:31:13 PM2/22/16
to jmeter-plugins
Hi Bino,

I misplaced the kp plugin in the POM.

Thanks,
Rajani

Reply all
Reply to author
Forward
0 new messages