maven

Posted 泳之

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven相关的知识,希望对你有一定的参考价值。

1.settings.xml标签被注释掉了Local Repository的路径为:${user.home}/.m2/repository
该标签被打开,则Local Repository中的路径为settings.xml中<localRepository>标签配置的路径

2.web.xml is missing and <failOnMissingWebXml> is set to true

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-war-plugin</artifactId>
            <version>2.6</version>
            <configuration>
<webResources>
<resource>
<!--配置本地jar包在项目中的存放路径-->
<directory>/web/WEB-INF/lib/</directory>
<!--配置打包时jar包的存放路径-->
<targetPath>WEB-INF/lib</targetPath>
<includes>
<include>**/*.jar</include>
</includes>
</resource>
</webResources>
<failOnMissingWebXml>false</failOnMissingWebXml>
            </configuration>
        </plugin>
    </plugins>
</build>
<properties>
    <failOnMissingWebXml>false</failOnMissingWebXml>
</properties>
<compilerArguments>
<!-- 对应jar放置在项目中的位置-->
<extdirs> ${project.basedir}/lib</extdirs>
</compilerArguments>

以上是关于maven的主要内容,如果未能解决你的问题,请参考以下文章

Mavenmaven简介

mavenmaven jar 包 冲突 的解决方式

Maven实战之初识MavenMaven的简单介绍

MavenMaven四大特性

mavenmaven pom文件详解

mavenmaven各种奇葩问题