I've encountered a similar issue and am including the output of a run with stacktrace and debug flags enabled in hopes that it's helpful: [output.txt](https://github.com/http-builder-ng/gradle-http-plugin/files/2142989/output.txt) Here is the task I attempted to configure: ``` task refreshPlugins(type:HttpTask) { config { request.uri = 'https://artifactory.test.net/artifactory' } post { request.uri.path = '/api/plugins/reload' response.success { lifecycle.info 'Plugins reloaded on test instance.' } } } ``` and my plugins block: ``` plugins { id 'groovy' id 'org.hidetake.ssh' version '2.9.0' id 'io.github.http-builder-ng.http-plugin' version '0.1.1' } ```
I've encountered a similar issue and am including the output of a run with stacktrace and debug flags enabled in hopes that it's helpful:
output.txt
Here is the task I attempted to configure:
and my plugins block: