JMeter plugins doesn't work with every JMeter version,
If my plugin doesn't work as Soap Sampler with JMeter 3.2,
Where can find correlation between JMeter plugin to JMeter version?
I didn't find any reference in forum or documentation page.
There is no compatibility matrix between jmeter-plugins and jmeter as jmeter-plugins is an aggregation of multiple plugins which:
do not come from same source since any 3rd party project can register to be available through download manager plugin
are not always compatible with last jmeter versions
I suggest you ask a question on jmeter plugins forum as it maybe an interesting improvement to advertise or add to descriptor the jmeter version the plugin is compatible with.
Regarding your particular plugin, one way to check is to look at pom.xml of the plugin project and potentially report a compatibility issue with jmeter 3.2
Related
Maybe it is a dumb quesion but I really cannot find a good document about what is Liberty Maven Plugin and what it is used for ?
I have checked some posts like How to redeploy artifact with liberty-maven-plugin? but it is not about the basic things. I need a good basic document,
what is it?
why should we use it?
why should not we use it?
what are the advantages ?...
The Liberty Maven Plugin provides a number of goals for managing a Liberty runtime, including downloading and installing the runtime, starting/stopping a server, installing features, and deploying applications. The plugin is open source and the code and documentation is available on Github here: https://github.com/OpenLiberty/ci.maven
There is a guide and sample project on building and testing a simple web application using the Liberty Maven Plugin and Open Liberty here: https://openliberty.io/guides/maven-intro.html
We're looking for a SQ plugin that would allow us to generate a PDF report witha a list of issues from the analyzed project.
There is this community plugin https://github.com/SonarQubeCommunity/sonar-pdf-report but as far as I know it's deprecated. Can you confirm that?
Is there any other option to achieve the goal?
We're currently using SQ version 5.6.3.
Yes, that plugin is deprecated: have a look at the deprecated plugins and the plugin version matrix pages. You can have a look at the Governance plugin but than you have to pay for an enterprise version. The best "free" option is to use the Web API to get the information you need and generate a PDF report yourself.
in the documentation of maven is written
You'll notice that all plugins in Maven look much like a dependency -
and in some ways they are. This plugin will be automatically
downloaded and used - including a specific version if you request it
(the default is to use the latest available).
Source: https://maven.apache.org/guides/getting-started/index.html#How_do_I_use_plugins
Does "the default is to use the latest available" include snapshots or not?
We would like to start developing custom/internal SonarQube plugins (rules) in our organization but we can't get our hands on Apache Maven at the moment. All development tools must go through a rigorous certification process.
Ant being the current build tool of choice in our organization, is it possible to create a new SonarQube plugin (not being published to the marketplace) by replicating the same standard structure that is expected from SonarQube?
I've already read the following post from the SonarQube archives, but was wondering if that would still be possible to do with a little bit of elbow grease?
Concerning the answer from Simon Brandhof, I think that the plugin key, manifest generation and mandatory properties could easily be generated from well crafted Ant build script, as long as putting all required JARs in the classpath.
As far I know for developping new rules It is mandatory to create a new Sonarqube plugin and can be only build with the maven way.
see https://docs.sonarqube.org/display/DEV/Build+Plugin
I am trying to setup the maven project to run the JMeter tests. Please let me know the way to setup the things to run the JMeter tests using Maven.
For me, most natural option is to use jmeter-maven-plugin:
https://github.com/jmeter-maven-plugin/jmeter-maven-plugin
It has good wiki with plenty of configuration examples.
I documented it all here. This project describes how to do it with Gradle and also with Maven. Personally, I think the Gradle version is a little more stable but the Maven version allows for nice HTML reports.