I tried to pass the --enable-url-protocols=http but it failed miserably.
After some digging in the code it turns out that the implementation takes the opts and prepends them with the "-" character.
So I had to "hack" it by passing --graalvm-opt "-enable-url-protocols=http" so it works correctly. (note the absence of one "-" at the beginning of the option)
I tried to pass the
--enable-url-protocols=httpbut it failed miserably.After some digging in the code it turns out that the implementation takes the opts and prepends them with the "-" character.
So I had to "hack" it by passing
--graalvm-opt "-enable-url-protocols=http"so it works correctly. (note the absence of one "-" at the beginning of the option)