cancel
Showing results for 
Search instead for 
Did you mean: 

alfresco 5 in eclipse

vincent-kali
Star Contributor
Star Contributor
Hi all,
I'm trying to get the source code in Eclipse of alfresco 5.0b (86473), following
the same procedure as for 4.x version. I'm facing the following issue: all .project, .classpath,
and root/build.xml files are missing.

Any idea ? Did I missed something ?

Thanks in advance,
Vincent

2 REPLIES 2

mrogers
Star Contributor
Star Contributor
Yes.   The build environment is now Maven and no longer tied into Eclipse specific .project files.   The build dependencies are now within the various maven POM files.

If you import the various Maven projects then Eclipse will generate the .project and .classpath files for you.

Furthermore the old "ant" build no longer exists.  Again Eclipse should already know what to do.   Or you use "mvn" on the command line.

vincent-kali
Star Contributor
Star Contributor
Many thanks for your response.