Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[m2e-users] upgrade from m2eclipse 0.12.1 to 1.1.0

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



Back to the top