Le 28/01/2011 20:18, Michael Giannakopoulos a écrit :
> Hello Luc,

Hi Michael,

> 
> First of all thanks for your answer!
> 
>> You should not move files.
>> Just checkout starting from the top folder containing the pom.xml file.
> 
> Well, in Eclipse i follow the "File->New->Project" option and then in the
> wizard i choose "Checkout Projects from SVN". Next, i choose to use an
> existing repository location which is "
> http://svn.apache.org/repos/asf/commons/proper/math/trunk";. So far so
> good... Then should i choose "Checkout as a project configured using the New
> Project Wizard" or "Checkout as a project in the workspace"?
> 

Use the project wizard. This will launch again the same wizard you
already used for SVN, but this time you will select Java->Java Project.

In the first page of the Java project wizard, choose the name you want
(I guess commons-math is a good choice) and select a Java 5 environment.

In the second page, Eclipse will have selected src as the source folder,
which is wrong for our layout. So you should rather add some subfolders
src/main/java, src/main/resources, src/test/java, src/test/resources
(either by right click and "New source folder" menu, or one of buttons
at the top of the wizard). When all the required folders have been
selected, you can remove the raw src folder.

In the "Libraries" tab, click on the "add library" button and add Junit
version 4.

You can now click finish on all the wizards. There will be a warning
message about fact the project you created contains resources other than
the standard .project file. Don't bother about it I think it is due to
Eclipse complaining about the files at the top level folder.

The four folders you have configured should appear in the package
explorer and you can use them as is or modify thme in place if you want.

best regards,
Luc

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org

Reply via email to