pdorrestijn

Results 6 comments of pdorrestijn

I have the same issue's. I can run the gradle jmh goal, however it seems impossible to create a runnable jar. shadowJar and jar gradle configurations are completely ignored. jmh...

Same issue here as of today. The central maven repository no longer has this artifact. Which plugin versions can I use that does not have this dependency? Previously it was...

So I tried 4.0.2 and it has similar issues :( org.asciidoctor.jvm.gems:org.asciidoctor.jvm.gems.gradle.plugin:4.0.2 > org.asciidoctor:asciidoctor-gradle-jvm-gems:4.0.2 > org.ysb33r.gradle.jruby:jrubygradle-resolver:1.0.1 > io.github.http-builder-ng:http-builder-ng-okhttp:1.0.3

using the build scan plugin and override the dependency doesn't seem to help either (or maybe I'm not doing it right, not sure as I never really had to do...

With help of Mr. Haki: ``` buildscript { configurations.classpath { resolutionStrategy.eachDependency { DependencyResolveDetails details -> if (details.requested.group == 'com.burgstaller' && details.requested.name == 'okhttp-digest' && details.requested.version == '1.10') { details.useTarget "io.github.rburgst:${details.requested.name}:1.21"...

Thnx @ysb33r, as 4.x has some changes requiring docs to use different keywords for certain stuff, I will keep you solution in mind once I've fixed those changes. Would be...