Eclipse建立Maven工程時出現的Java Build path 問題
阿新 • • 發佈:2019-02-13
問題描述
使用eclipse建立Maven工程時,出現如下錯誤:
Description Resource Path Location Type
Build path specifies execution environment J2SE-1.5. There are no JREs installed in the workspace that are strictly compatible with this environment. SpringBasic Build path JRE System Library Problem
解決方案
原因是,maven build 的java build path路徑未設定:
效果圖:
終極解決方案
由於maven中update project 之後,可能還是會出現上述錯誤,可在pom.xml 檔案中新增外掛:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId >maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>