maven settings文件常用配置

来源:互联网 发布:淘宝 身份证 重新开店 编辑:程序博客网 时间:2024/06/07 06:30

maven settings.xml文件常用配置记录

本地仓库文件夹

<localRepository>E:/Programming/repos/mvnRepos</localRepository>

阿里云镜像

        <mirror>            <id>alimaven</id>            <name>aliyun maven</name>            <url>http://maven.aliyun.com/nexus/content/groups/public/</url>            <mirrorOf>central</mirrorOf>        </mirror>

jdk指定版本

        <profile>            <id>jdk18</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>
原创粉丝点击