Hi folks,
the usage of maven would have some benefits
The pom I posted this week is only a “hack” … at the moment all needed jar’s are part of the rvs. For most of them it’s impossible to find the current version (i.e. android.jar ?!). The maven way can only work if all needed dependencies are available from repositories.
What can I do for you is that: I can create simple maven-wrapper-projects for each lib/**.
The project hierarchie could then look like this:
jme-parent/
+— jme-thirdparty/
+——- jme-thirdparty-android/
+——- …
+— jme3/
jme3 depends on the thirdparty-artifacts .. at the end we can go into jme3 and run mvn clean install and that’s it
Then step by step we can remove the jme-thirdparty-artifacts (if these projects become available in the maven universe).
This could be done parallel to the current ant solution.
And then later all ant based tasks could be transformed to the maven style … + a lot of more (i.e. a project site with nice reports *g*)
What do you think?
Regards
Andreas