解決eclipse建立項目,jdk版本太舊問題

    這兩天使用eclipse建立maven項目,老是默認使用的老版本jdk,這讓我很煩躁,網上有不少修改的帖子,今天忽然有興致,決定在本身的博客記錄一下;eclipse

在本身的maven安裝目錄總找到conf/settings.xml,在profile區添加以下配置:maven

<profile>
    <id>jdk-1.8</id>
    <activation>
        <activeByDefault>true</activeByDefault>
        <jdk>1.8</jdk>
    </activation>
    <properties>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
        <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
    </properties>
</profile>

而後在eclipse-Preferences-Maven-User Settings,指定剛纔編輯的settings.xml,spa

xml

圖中Global Settings和User Setttings設置哪個均可以,兩者的區別是Global Settings一般配置的是你maven安裝目錄下cnof下的settings.xml文件,User Setttings是當前工做空間的,好比咱們當前項目依賴的maven本地倉庫不在.m2/下,咱們能夠經過複製maven安裝目錄conf/settings.xml到你想要指定的倉庫位置,編輯文件添加ip

<localRepository>這裏是你倉庫目錄的全路徑</localRepository>ci

,而後配置User Settings指向剛纔所編輯的settings文件;get

粗淺理解,純粹我的筆記,但願能對他人有點幫助!博客

若有講解錯誤,請留言指正,不勝感激!!!it

相關文章
相關標籤/搜索