Hi,

I have just downloaded Eclipse Juno. And my previous projet which compile
normaly under Eclise Helios don't compile now.

Project compile normaly with command line. Dependency resolution seems to
not working under Eclipse Juno.

It seems that classpath file syntax have changed. i have commited these
files in the past and now i suppose that data are not recognized.

before :
..
<classpathentry kind="src" path="src/main/java/services"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
..

now (on a new project created with Juno) :
..
<classpathentry kind="src" output="target/classes" path="src/main/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>

<classpathentry kind="con"
path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con"
path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>


Does exists a migration guide or a guideline ?
Or, i have to re-create my projects ?  (mmm... not quite elegant)

And why do i have a reference to J2SE 1.5 ([..] StandardVMType/J2SE-1.5) as
my Eclipse Juno run with a 1.6 JDK (which is the only jdk knonw by Eclipse)

Thanks for help
_______________________________________________
m2e-users mailing list
[email protected]
https://dev.eclipse.org/mailman/listinfo/m2e-users

Reply via email to