Jonny Carter
Jonny Carter
I do have multiple data sources defined. That could be the issue.
This problem also crops up if you have an SSH key passphrase configured. https://www.ssh.com/ssh/passphrase
I tried messing around with this in my fork. See https://github.com/researchgate/gradle-release/compare/main...jonnybot0:gradle-release:main. Main problem I'm running up against now is that I'm getting this error when running the tests: ``` org.gradle.api.internal.plugins.PluginApplicationException:...
I've attempted to add command line options support using the `@Option` annotation, but to no avail. See the [gradle docs](https://docs.gradle.org/current/userguide/custom_tasks.html#sec:declaring_and_using_command_line_options) on the subject. You can see my branch at https://github.com/jonnybot0/jmh-gradle-plugin/tree/add-cli-arguments-for-gradle-task....
Yeah, but there's no good guidance on how to post to APIs that don't accept URL Encoded data. There's an old SO post about it at https://stackoverflow.com/questions/6452678/httpbuilder-and-multipartentity-multipart-form-data-in-groovy.
So, the best answer I've found has been to simply move to the better maintained http-builder-ng library. See https://github.com/http-builder-ng/http-builder-ng. It has good MultiPart support out of the box. https://http-builder-ng.github.io/http-builder-ng/asciidoc/html5/#_multipart
So, I stumbled across this, saw my old comment, and realized that this is perfectly doable using ye olde HTTPBuilder. ``` import org.apache.http.entity.mime.MultipartEntityBuilder import org.apache.http.entity.mime.content.FileBody import groovyx.net.http.ContentType import groovyx.net.http.Method def...
Hey, @jamesfredley! Neither I nor the Geb project maintain this repository. For our part, we're actively working to move from this to [Selenium Manager](https://www.selenium.dev/blog/2022/introducing-selenium-manager/), which solves the same core problem....