Hello Everyone,
I am currently having a quiet tedious problem with creating eclipse
settings.
I simply need a utility project 1.0 with the Java Facet 5.0. Simply a
Java 5 Projects that can be added to a WebApplication via J2EE
Dependencies.
But when I set the eclipse plugin to the following,
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<inherited>false</inherited>
<configuration>
<additionalProjectFacets>
<jst.java>5.0</jst.java>
<jst.utility>1.0</jst.utility>
</additionalProjectFacets>
<eclipseProjectDir>
${project.basedir}
</eclipseProjectDir>
<wtpversion>1.5</wtpversion>
</configuration>
</plugin>
I receiveht this setting.
<faceted-project>
<fixed facet="jst.java"/>
<fixed facet="jst.utility"/>
<installed facet="jst.utility" version="1.0"/>
<installed facet="jst.java" version="1.4"/>
<installed facet="jst.java" version="1.4"/>
<installed facet="jst.utility" version="1.0"/>
</faceted-project>
But What I would like to have is:
<faceted-project>
<fixed facet="jst.java"/>
<fixed facet="jst.utility"/>
<installed facet="jst.java" version="5.0"/>
<installed facet="jst.utility" version="1.0"/>
</faceted-project>
There is no other eclipse-plugin setting in the parent pom.
Does anyone have an idea where these settings might come from?
Thank you and regards,
Alexander
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]