I'm trying to build a Dynamic Web Application in eclipse using Java 8 (and the Wildfly appServer, if that matters), but I can't get Eclipse Luna M5 to use Java 8 (I have Java 8 BETA support installed and it works on projects JavaSE).
In my POM, I set the level in Java 8:
<plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin>
But after doing maven -> update project I get the following error:
Could not update project ExampleApp configuration Version 1.8 of project facet java does not exist.
And really, there is no java 1.8 facet under project->preferences->project facets->java
Can I manually create such a facet and add It to to eclipse or will I have to wait until java 8 is released and the guys from eclipse decide to add it?
java eclipse maven java-8 m2eclipse
Svetlin Zarev Feb 22 '14 at 13:51 2014-02-22 13:51
source share