Hi All
In maven 1 used to be a property
<eclipse.plugin.bundle>true</eclipse.plugin.bundle>
I can't find any idea how this can be done in maven2. Even more,
there are no code related to "exported" in current
maven-eclipse-plugin source tree.
My case is:
I'm building EclipseMe project like this:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<buildcommands>
<buildcommand>org.eclipse.jdt.core.javabuilder</buildcommand>
<buildcommand>eclipseme.core.preverifier</buildcommand>
</buildcommands>
<projectnatures>
<projectnature>org.eclipse.jdt.core.javanature</projectnature>
<projectnature>eclipseme.core.nature</projectnature>
</projectnatures>
<classpathContainers>
<classpathContainer>J2MELIB</classpathContainer>
<classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer>
</classpathContainers>
</configuration>
</plugin>
All works fine until I need to add another library or module to my project.
EclipseMe require library to be marked as exported ....
--
Vlad
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]