for a little bit of context: I have found Gretty from libKTX, a game framework based on libGDX. More specifically from the example build.gradle provided to build and start the application on a webserver, which uses TeaVM to translate the code into a JavaScript webapp and then Gretty to start it.
So as far as I understand you cannot just change the resource base of Gretty but you can add additional webapp directories via extraResourceBase(...) which I use to point to build/dist/webapp, as it is where the built app is stored. Which works fine in version 3.1.1.
But after updating to 4.1.0, I get the following error:
Hello,
for a little bit of context: I have found Gretty from libKTX, a game framework based on libGDX. More specifically from the example build.gradle provided to build and start the application on a webserver, which uses TeaVM to translate the code into a JavaScript webapp and then Gretty to start it.
So as far as I understand you cannot just change the resource base of Gretty but you can add additional webapp directories via
extraResourceBase(...)
which I use to point tobuild/dist/webapp
, as it is where the built app is stored. Which works fine in version 3.1.1.But after updating to 4.1.0, I get the following error:
Although it should look at
D:\path\to\my\project\teavm\build\dist\webapp
Has anything changed with the update, that the code has to be adjusted? Thank you!