JME 3.9.0 Development

@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

2 Likes

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

1 Like

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

1 Like

UPDATE: now everything, including the hub, is on the new server

11 Likes

Thank you!

1 Like

Things seem to be going well with 3.9 so far; there have been very few bugs reported so I’ll likely announce a feature freeze and move to the beta phase for 3.9 around the end of October. And if all goes well, the next stable release should be out by the end of the year.

So if you haven’t tested 3.9 yet, now would be a great time to give the latest alpha release a run in your projects to check for any bugs that may have slipped past the engine’s tests and other testers’ projects.

There are also still many PRs open that need review, particularly many javadoc and refactoring PRs. I encourage contributors to look through the list of open PRs and help review any that you can.

Here are a few PRs adding new features that I’d like to have merged soon to make it into 3.9 before the feature freeze if possible:

Add support for global lights by riccardobl · Pull Request #2548 · jMonkeyEngine/jmonkeyengine

Improve light render parity with blender by riccardobl · Pull Request #2549 · jMonkeyEngine/jmonkeyengine

iOS support by joliver82 · Pull Request #2411 · jMonkeyEngine/jmonkeyengine

6 Likes