We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26ed88d commit c94572bCopy full SHA for c94572b
src/minimize_jdk.sh
@@ -47,6 +47,10 @@ if [[ "$UNAME" =~ msys_nt* ]]; then
47
cd "tmp.$$"
48
unzip "../$fulljdk"
49
cd $FULL_JDK_DIR
50
+ # We have to add this module explicitly because it is windows specific, it allows
51
+ # the usage of the Windows truststore
52
+ # e.g. -Djavax.net.ssl.trustStoreType=WINDOWS-ROOT
53
+ modules="$modules,jdk.crypto.mscapi"
54
./bin/jlink --module-path ./jmods/ --add-modules "$modules" \
55
--vm=server --strip-debug --no-man-pages \
56
--output reduced
0 commit comments