編譯如何強制Maven來編譯1.6兼容的源行家並不在Java 1.6
我在Eclipse中的Maven做web應用程序項目。更改web.xml使用3.0版本 - >然後更新配置,現在我不能啓動tomcat。 我發現我必須迫使Maven來編譯源1.6兼容,並且我要補充
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<executable>${env.JAVA_HOME_7}/bin/javac</executable>
<fork>true</fork>
</configuration>
但在日食有效POM是不可編輯
所以是有一個Maven與Eclipse兼容或者其他方式強制maven編譯源碼1.6版本?
問題關閉 – simar 2013-02-11 08:46:05