Alexandre Touret wrote:
2 / The configuration of project facets
how may configure the eclipse plugin in order to specify the versions
of projects facets of WTP (Servlet API version number, JAVA version
,...) ?
I finally solved this problem. I add the following configuration to the
maven-compiler-plugin
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
Regards,
Alexandre
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]