Switch to a okhttp-digest version that is available on Maven central
This commit is contained in:
parent
26f20caa63
commit
b2edca91dc
|
@ -3,6 +3,16 @@ import java.util.function.Function
|
||||||
import org.asciidoctor.gradle.jvm.AsciidoctorTask
|
import org.asciidoctor.gradle.jvm.AsciidoctorTask
|
||||||
import org.asciidoctor.gradle.jvm.pdf.AsciidoctorPdfTask
|
import org.asciidoctor.gradle.jvm.pdf.AsciidoctorPdfTask
|
||||||
|
|
||||||
|
buildscript {
|
||||||
|
configurations.all {
|
||||||
|
resolutionStrategy.dependencySubstitution {
|
||||||
|
substitute module( 'com.burgstaller:okhttp-digest:1.10' ) using module(
|
||||||
|
'io.github.rburgst:okhttp-digest:1.21'
|
||||||
|
) because 'okhttp-digest only version 1.21 is available on Maven Central. Old version was on jcenter, which asciidoctor-gradle-plugin depends on transitively through simplified-jruby-gradle-plugin via http-builder-ng-okhttp '
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id 'org.asciidoctor.jvm.convert' version '4.0.2'
|
id 'org.asciidoctor.jvm.convert' version '4.0.2'
|
||||||
id 'org.asciidoctor.jvm.pdf' version '4.0.2'
|
id 'org.asciidoctor.jvm.pdf' version '4.0.2'
|
||||||
|
@ -634,7 +644,7 @@ def renderUserGuideHtmlTask = tasks.register( 'renderUserGuideHtml', Asciidoctor
|
||||||
stylesheet: "css/hibernate.css",
|
stylesheet: "css/hibernate.css",
|
||||||
docinfo: 'private',
|
docinfo: 'private',
|
||||||
jpaJavadocUrlPrefix: "https://javaee.github.io/javaee-spec/javadocs/javax/persistence/",
|
jpaJavadocUrlPrefix: "https://javaee.github.io/javaee-spec/javadocs/javax/persistence/",
|
||||||
'generated-report-dir': layout.buildDirectory.dir( 'orm/generated' )
|
'generated-report-dir': layout.buildDirectory.dir( 'orm/generated' ).get()
|
||||||
|
|
||||||
resources {
|
resources {
|
||||||
from( 'src/main/asciidoc/userguide/' ) {
|
from( 'src/main/asciidoc/userguide/' ) {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Keep all these properties in sync unless you know what you are doing!
|
# Keep all these properties in sync unless you know what you are doing!
|
||||||
# We set '-Dlog4j2.disableJmx=true' to prevent classloader leaks triggered by the logger.
|
# We set '-Dlog4j2.disableJmx=true' to prevent classloader leaks triggered by the logger.
|
||||||
# (Some of these settings need to be repeated in the test.jvmArgs blocks of each module)
|
# (Some of these settings need to be repeated in the test.jvmArgs blocks of each module)
|
||||||
org.gradle.jvmargs=-Dlog4j2.disableJmx -Xmx2g -XX:MaxMetaspaceSize=256m -XX:+HeapDumpOnOutOfMemoryError -Duser.language=en -Duser.country=US -Duser.timezone=UTC -Dfile.encoding=UTF-8
|
org.gradle.jvmargs=-Dlog4j2.disableJmx -Xmx2g -XX:MaxMetaspaceSize=384m -XX:+HeapDumpOnOutOfMemoryError -Duser.language=en -Duser.country=US -Duser.timezone=UTC -Dfile.encoding=UTF-8
|
||||||
toolchain.compiler.jvmargs=-Dlog4j2.disableJmx=true -Xmx2g -XX:MaxMetaspaceSize=256m -XX:+HeapDumpOnOutOfMemoryError -Duser.language=en -Duser.country=US -Duser.timezone=UTC -Dfile.encoding=UTF-8
|
toolchain.compiler.jvmargs=-Dlog4j2.disableJmx=true -Xmx2g -XX:MaxMetaspaceSize=256m -XX:+HeapDumpOnOutOfMemoryError -Duser.language=en -Duser.country=US -Duser.timezone=UTC -Dfile.encoding=UTF-8
|
||||||
toolchain.javadoc.jvmargs=-Dlog4j2.disableJmx=true -Xmx2g -XX:MaxMetaspaceSize=256m -XX:+HeapDumpOnOutOfMemoryError -Duser.language=en -Duser.country=US -Duser.timezone=UTC -Dfile.encoding=UTF-8
|
toolchain.javadoc.jvmargs=-Dlog4j2.disableJmx=true -Xmx2g -XX:MaxMetaspaceSize=256m -XX:+HeapDumpOnOutOfMemoryError -Duser.language=en -Duser.country=US -Duser.timezone=UTC -Dfile.encoding=UTF-8
|
||||||
toolchain.launcher.jvmargs=-Dlog4j2.disableJmx=true -Xmx2g -XX:MaxMetaspaceSize=448m -XX:+HeapDumpOnOutOfMemoryError -Duser.language=en -Duser.country=US -Duser.timezone=UTC -Dfile.encoding=UTF-8
|
toolchain.launcher.jvmargs=-Dlog4j2.disableJmx=true -Xmx2g -XX:MaxMetaspaceSize=448m -XX:+HeapDumpOnOutOfMemoryError -Duser.language=en -Duser.country=US -Duser.timezone=UTC -Dfile.encoding=UTF-8
|
||||||
|
|
Loading…
Reference in New Issue