码迷,mamicode.com
首页 > 其他好文 > 详细

常用操作

时间:2018-06-24 19:35:40      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:项目   常用   prope   pom.xml   依赖   artifact   targe   tar   http   

1、导出依赖包

Maven Build执行以下语句,默认导出目录为项目根目录的\target\dependency

dependency:copy-dependencies

 2、设置jdk默认版本

一种是在项目pom.xml文件里配置

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <source>1.8</source>
                <target>1.8</target>
            </configuration>
        </plugin>
    </plugins>
</build>

另一种是在maven配置文件setting.xml里配置

<profile>
    <id>jdk18</id>
    <activation>
        <jdk>1.8</jdk>
        <activeByDefault>true</activeByDefault>
    </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>

 3、修改镜像源

maven配置文件的<mirrors>下加入以下内容

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

 

常用操作

标签:项目   常用   prope   pom.xml   依赖   artifact   targe   tar   http   

原文地址:https://www.cnblogs.com/suheng/p/9221075.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!