Hello,
I am using MyEclipse 6.5.1-GA-20080715.
i am trying to trying to migrate our applications from eclipse+.m2eclipse to myeclipse with the maven4MyEclipse.
I checked out an already mavenized web project from the svn.
Edited the .project file to add the build command:
<buildCommand>
<name>org.maven.ide.eclipse.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
and replaced the project nature from
<nature>org.maven.ide.eclipse.maven2Nature</nature>
to
<nature>com.genuitec.eclipse.maven.maven2Nature</nature>
Everything compiled ok.
But when i went to run on a server i started to run into problems. My testcases (defined under /src/test/java) are getting deployed, but the dependencies that they have are correctly not being added (since they are marked with test scope).
Do i have a workaround for this situation besides removing the src/test/java and src/test/resources from the build path?
best regards,
Joao