# Maven 知识及常见问题
Posted MarlonBrando1998
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了# Maven 知识及常见问题相关的知识,希望对你有一定的参考价值。
Maven项目对象模型(POM),可以通过一小段描述信息来管理项目的构建,报告和文档的项目管理工具软件。
Maven 安装
安装步骤
- 下载
maven
配置环境变量,即可使用
settingx.ml常用仓库地址
-
阿里云仓库
<mirrors> <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror> </mirrors>
Idea 使用maven常见坑
- Idea右侧
Profiles
下面的每个maven
项目报红,因为项目无法识别到当前的maven
项目,右键unlink maven projects
,点击加号重新添加项目。 - 编译的时候如果
class
文件中已经存在了,但是Idea
报找不到类并且报红,可以尝试上面的方法。或者清理Idea
的缓存重启。 - 当仓库中的
jar
包问题混乱时候,可以重新指定maven
的地址,重新拉去jar
包。
Maven 常用命令
mvn clean
运行该命令,会删除项目的target
整个目录。
mvn install
将maven项目,编译、打包到本地仓库。
mvn deploy
将项目进行打包发布到远端仓库中。
mvn compile
编译项目
pom.xml配置
排除依赖中的某个包
- 当项目中的依赖有冲突的时候,可以排除相关的
jar
,可以不用排除,但是因为冲突报错的时候需要排除相关jar
。
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson</artifactId>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
</exclusions>
<version>3.5.0</version>
</dependency>
配置 maven编译的版本
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
maven 文件资源的配置
<build>
<!-- 构建最终生成项目的名字 -->
<finalName>maven-test</finalName>
<!-- 构建产生的文件存放目录 -->
<directory>./ldtest</directory>
<!-- 项目资源的路径 -->
<resources>
<resource>
<!-- 指定资源文件编译后放置的目录,根目录是target/classes -->
<targetPath>./ldtest/resources</targetPath>
<directory>${basedir}/src/main/resources</directory>
<!-- 筛选需要编译的文件 -->
<includes>
<include>*.xml</include>
</includes>
<!-- 排除之外的文件 -->
<excludes>
<exclude>*.properties</exclude>
</excludes>
</resource>
</resources>
</build>
以上是关于# Maven 知识及常见问题的主要内容,如果未能解决你的问题,请参考以下文章
maven web项目的web.xml报错The markup in the document following the root element must be well-formed.(代码片段