@RiccardoBlb
it seems the problem has occurred again…
I migrated everything except hub.jmonkeyengine.org to the new server, so this issue should be fixed for good now
It works now. Thank you very much @RiccardoBlb!
If I understand correctly, the jme3-natives.zip
file contains Android libraries. Can I bypass downloading this zip file when I run the gradle install task on my local PC?
Thanks
i think you can exclude the task with -xextractPrebuiltNatives
Or by setting skipPrebuildLibraries=true
in the properties
Hi, to speed up the development, testing and engine installation time on my local pc I would like to exclude the javadoc generation of the jme3-examples
module which I don’t find very useful and takes on average over 1 minute when I run the gradle install task.
Could you tell me how to do this?
Thanks
Should be
-x jme3-examples:javadoc
in the command line (you can exclude any task you don’t want with -x subprojectname:task )
or
buildJavaDoc = false
in the properties, but this will disable javadoc entirely
UPDATE: now everything, including the hub, is on the new server
Thank you!