关于maven安装目录下conf中的settings设定
如题,现在Jdk已经更新到10.0.1了该怎么个填法(目前是下面的写法,更改是没有作用的)
<profile>
<id>jdk-10</id>
<action>
<activeByDefault>true</activeByDefault>
<jdk>10</jdk>
</action>
<properties>
<maven.compiler.source>10</maven.compiler.source>
<maven.compiler.target>10</maven.compiler.target>
<maven.compiler.compilerVersion>10</maven.target.compilerVersion>
</properties>
</profile>