猿问

maven在settings文件中配置全局jdk版本没有生效是怎么回事?

<profile>   

    <id>jdk1.7</id>    

    <activation>   

        <activeByDefault>true</activeByDefault>    

        <jdk>1.7</jdk>   

    </activation>    

    <properties>   

        <maven.compiler.source>1.7</maven.compiler.source>    

        <maven.compiler.target>1.7</maven.compiler.target>    

        <maven.compiler.compilerVersion>1.7</maven.compiler.compilerVersion>   

    </properties>   

</profile>

   

在全局setting.xml 加了没有生效还是1.5

AbnerRoc
浏览 3215回答 1
1回答

Finit

配置优先级从高到低:pom.xml> user settings > global settings。
随时随地看视频慕课网APP

相关分类

Java
我要回答