maven settings文件常用配置

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

本地仓库文件夹

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

阿里云镜像

        <mirror>
            <id>alimavenid>
            <name>aliyun mavenname>
            <url>http://maven.aliyun.com/nexus/content/groups/public/url>
            <mirrorOf>centralmirrorOf>
        mirror>

jdk指定版本

        <profile>
            <id>jdk18id>
            <activation>
                <activeByDefault>trueactiveByDefault>
                <jdk>1.8jdk>
            activation>
            <properties>
                <maven.compiler.source>1.8maven.compiler.source>
                <maven.compiler.target>1.8maven.compiler.target>
                <maven.compiler.compilerVersion>1.8maven.compiler.compilerVersion>
            properties>
        profile>

你可能感兴趣的:(Java开发笔记)