From e67f3dfa8215f9ed2e7ec0f510891dcb08dc8fab Mon Sep 17 00:00:00 2001 From: Guillaume Smet Date: Mon, 5 Nov 2018 11:38:30 +0100 Subject: [PATCH] HHH-13069 Go back to non-SSL links for our JBoss Nexus repositories Using SSL repositories with JDK 11 ends up with the error below: javax.net.ssl.SSLHandshakeException: extension (10) should not be presented in server_hello This is a bug in JDK 11 that will apparently be fixed in the next update (planned for January 2019). Until then, we need to use non-SSL links. For more information: https://stackoverflow.com/questions/52016415/jdk-11-ssl-error-on-valid-certificate-working-in-previous-versions https://bugs.openjdk.java.net/browse/JDK-8209965 - JDK 12 issue https://bugs.openjdk.java.net/browse/JDK-8210005 - JDK 11 issue --- build.gradle | 4 ++-- buildSrc/build.gradle | 4 ++-- documentation/src/main/asciidoc/topical/wildfly/Wildfly.adoc | 2 +- hibernate-orm-modules/hibernate-orm-modules.gradle | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/build.gradle b/build.gradle index 9813081200..d7d46c984e 100644 --- a/build.gradle +++ b/build.gradle @@ -13,7 +13,7 @@ buildscript { mavenCentral() maven { name 'jboss-snapshots' - url 'https://repository.jboss.org/nexus/content/repositories/snapshots/' + url 'http://repository.jboss.org/nexus/content/repositories/snapshots/' } } dependencies { @@ -38,7 +38,7 @@ allprojects { mavenCentral() maven { name "jboss-snapshots" - url "http://snapshots.jboss.org/maven2/" + url "http://repository.jboss.org/nexus/content/repositories/snapshots/" } //Allow loading additional dependencies from a local path; //useful to load JDBC drivers which can not be distributed in public. diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle index e3f6770b5a..b1ac4faa46 100644 --- a/buildSrc/build.gradle +++ b/buildSrc/build.gradle @@ -9,11 +9,11 @@ repositories { jcenter() maven { name 'jboss-releases' - url 'https://repository.jboss.org/nexus/content/repositories/releases/' + url 'http://repository.jboss.org/nexus/content/repositories/releases/' } maven { name 'jboss-snapshots' - url 'https://repository.jboss.org/nexus/content/repositories/snapshots/' + url 'http://repository.jboss.org/nexus/content/repositories/snapshots/' } } diff --git a/documentation/src/main/asciidoc/topical/wildfly/Wildfly.adoc b/documentation/src/main/asciidoc/topical/wildfly/Wildfly.adoc index af6ca0fddb..f800e52daf 100644 --- a/documentation/src/main/asciidoc/topical/wildfly/Wildfly.adoc +++ b/documentation/src/main/asciidoc/topical/wildfly/Wildfly.adoc @@ -209,7 +209,7 @@ repositories { mavenCentral() maven { name 'jboss-public' - url 'https://repository.jboss.org/nexus/content/groups/public/' + url 'http://repository.jboss.org/nexus/content/groups/public/' } } diff --git a/hibernate-orm-modules/hibernate-orm-modules.gradle b/hibernate-orm-modules/hibernate-orm-modules.gradle index 51c316c040..c2af2fdd14 100644 --- a/hibernate-orm-modules/hibernate-orm-modules.gradle +++ b/hibernate-orm-modules/hibernate-orm-modules.gradle @@ -60,7 +60,7 @@ repositories { mavenCentral() maven { name 'jboss-public' - url 'https://repository.jboss.org/nexus/content/groups/public/' + url 'http://repository.jboss.org/nexus/content/groups/public/' } }