Saturday, October 17, 2009
Tuesday, October 13, 2009
Java compiler level does not match the version of the installed Java project facet.
Por alguma razão o Maven 2 não vem configurado com o JDK 1.5 por padrão. Como este blog serve para coisas corriqueiras, basta colocar o plugin no POM.xml
<build>
<plugins>
<plugin>
<groupid>org.apache.maven.plugins</groupid>
<maven-compiler-plugin</artifactid>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build>
Dá pra colocar no settings.xml para não ter que fazer isso o tempo todo...
Subscribe to:
Posts (Atom)