-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for jmeter 2.11, 2.12, 2.13 #39
Conversation
Support for jmeter 2.11, 2.12, 2.13
Versions 1.3.3-2.xx released to maven central repositories. It will take few hours to propagate them to maven central. If you need it sooner, please specify additional maven repo in your build.gradle "https://oss.sonatype.org/content/groups/public" |
Thanks @kulya That was quick! |
configurations { | ||
//workaround for jmeter defect 57555 (https://bz.apache.org/bugzilla/show_bug.cgi?id=57555) | ||
if (jmeterVersion == '2.12'){ | ||
compile.exclude group: 'excalibur-fortress' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These excludes don't make it to pom files generated with the maven plugin. Need to add 'module:' information as well.
Yeah, I have trouble starting it as version 2.13. Cant find commons-math3 and commons-pool2 . When it try to start as 2.12, the error is different: Could not find d-haven-managed-pool:d-haven-managed-pool:1.0 To reproduce my error, try to run the startJmeterWithGradle.bat script in my launch-jmeter repo: https://github.com/djangofan/launch-jmeter . Here is my build.gradle : https://github.com/djangofan/launch-jmeter/blob/master/build.gradle |
fixed in #42 |
After great difficulty, I finally got Gradle to load Jmeter 2.13 (with help from your changes) and I was also able to get all the jmeter-plugins to load , as well as groovy-all, opencsv, guava, commons-lang3 . Here is my build script: https://github.com/djangofan/launch-jmeter/blob/master/build.gradle |
@djangofan let's move this conversation here: https://github.com/djangofan/launch-jmeter/issues/1 |
Closes #36
Closes #40