From 3eef2b6f4b7ee3501082a9f4d4774a62c9e936e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Van=C4=9Bk?= Date: Sun, 24 May 2020 18:55:21 +0200 Subject: [PATCH] [config] fix: Enable jdk.crypto.ec java module for JRI Some sites expose such a TLS configuration that java is unable to proceed with TLS handshake without supporting elliptic curve cryptography. This adds the module to JRI to fix it for these websites. Related to https://github.com/ev3dev-lang-java/ev3dev-lang-java/issues/728 --- scripts/config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/config.sh b/scripts/config.sh index a8223fc..54c5da6 100644 --- a/scripts/config.sh +++ b/scripts/config.sh @@ -16,7 +16,7 @@ CACERTFILE="$ABLDDIR/security/cacerts" JAVA_TMP="$BUILDDIR/jdk_tmp" TARBALL_MAX_DOWNLOADS=10 -JRI_MODULES="java.se,jdk.jdwp.agent,jdk.unsupported,jdk.management.agent,jdk.jartool" +JRI_MODULES="java.se,jdk.jdwp.agent,jdk.unsupported,jdk.management.agent,jdk.jartool,jdk.crypto.ec" JTREG="$BUILDDIR/jtreg" JTREG_URL="https://ci.adoptopenjdk.net/view/Dependencies/job/jtreg/lastSuccessfulBuild/artifact/jtreg-4.2.0-tip.tar.gz"