maven配置详解

article/2025/9/23 12:38:26

 下载地址:Maven – Download Apache Maven,

添加环境变量:MAVEN_HOME

一、配置文件

maven的配置文件主要有 settings.xml 和pom.xml 两个文件。

1.其中在maven安装目录,例如apache-maven-3.8.1\conf目录下的settings.xml 文件是全局配置文件

2.用户目录的.m2子目录下面的settings.xml的配置只是针对当前用户的配置

3.项目根路径下的pom.xml主要是对当前项目的配置。

局部配置优先于全局配置。 配置优先级从高到低:pom.xml> user settings > global settings

二、settings.xml 配置详解

1.LocalRepository 本地仓库配置:

<localRepository>D:\repository</localRepository>

2.InteractiveMode 用户输入配置:

<interactiveMode>true</interactiveMode>

3.离线模式

<offline>false</offline>

3.插件组,当我们使用某个插件,并且没有在命令行为其提供组织Id(groupId)的时候,Maven就会使用该列表。默认情况下该列表包含了org.apache.maven.pluginsorg.codehaus.mojo

<pluginGroups><pluginGroup>org.sonarsource.scanner.maven</pluginGroup>
</pluginGroups>

4.私服服务器配置,配置私服的用户名和密码。配置的私服服务器可以用来发布jar包,与pom.xml 中 发布标签distributionManagement 中配置的仓库ID相互对应。

<servers><server><id>maven-releases</id><username>developer</username><password>123456</password><!--文件被创建时的权限。 --><filePermissions>664</filePermissions><!--目录被创建时的权限。 --><directoryPermissions>775</directoryPermissions></server>
</servers>

 5.镜像配置

<mirror><id>alimaven</id><name>aliyun maven</name><url>https://maven.aliyun.com/repository/central</url><!-- 被镜像的服务器的id --><mirrorOf>*</mirrorOf>
</mirror>

6.Profiles配置。

settings.xml中的profile元素是pom.xml中profile元素的子集。只包含了id、activation、repositories、pluginRepositories和 properties元素。
如果一个settings.xml中的profile被激活,它的值会覆盖任何其它定义在pom.xml中带有相同id的profile。

<profiles><profile><id>nexus</id><!-- 设置默认激活 --><activation><activeByDefault>true</activeByDefault></activation><repositories><!-- 配置依赖仓库,可以配置多个仓库,maven会按照顺序进行依赖的加载 --><repository><id>nexus</id><name>gwm nexus</name><url>http://nexus.maven.cn/repository/maven-public/</url><releases><enabled>true</enabled></releases><snapshots><enabled>true</enabled></snapshots></repository></repositories><!-- 设置插件仓库 --><pluginRepositories><pluginRepository><id>nexus</id><name>gwm nexus</name><url>http://nexus.maven.cn/repository/maven-public/</url><releases><enabled>true</enabled></releases><snapshots><enabled>true</enabled></snapshots></pluginRepository></pluginRepositories></profile><profile><id>sonar</id><activation><activeByDefault>true</activeByDefault></activation><!-- 配置Sonarquebe 代码扫描插件的全局属性--><properties><sonar.host.url>http://localhost:9000</sonar.host.url><sonar.login>admin</sonar.login><sonar.password>admin</sonar.password></properties></profile>
</profiles>

7. Activation配置,用来设置profile配置激活的条件逻辑。

<activation><!--profile默认是否激活的标识 --><activeByDefault>false</activeByDefault><!--当匹配的jdk被检测到,profile被激活。例如,1.4激活JDK1.4,1.4.0_2,而!1.4激活所有版本不是以1.4开头的JDK。 --><jdk>1.8</jdk><!--如果Maven检测到某一个属性(其值可以在POM中通过${name}引用),其拥有对应的name = 值,Profile就会被激活。如果值字段是空的,那么存在属性名称字段就会激活profile,否则按区分大小写方式匹配属性值字段 --><property><!--激活profile的属性的名称 --><name>mavenVersion</name><!--激活profile的属性的值 --><value>2.0.3</value></property><!--提供一个文件名,通过检测该文件的存在或不存在来激活profile。missing检查文件是否存在,如果不存在则激活profile。另一方面,exists则会检查文件是否存在,如果存在则激活profile。 --><file><!--如果指定的文件存在,则激活profile。 --><exists>${basedir}/file2.properties</exists><!--如果指定的文件不存在,则激活profile。 --><missing>${basedir}/file1.properties</missing></file>
</activation>

8.properties 配置,对应profile的扩展属性和pom中properties的属性列表,这些值可以在pom.xml,setting.xml中使用标记${X}来使用,这里X是指属性的名称。

<!-- 1. env.X: 在一个变量前加上"env."的前缀,会返回一个shell环境变量。例如,"env.PATH"指代了$path环境变量(在Windows上是%PATH%)。 2. project.x:指代了POM中对应的元素值。例如: <project><version>1.0</version></project>通过${project.version}获得version的值。 3. settings.x: 指代了settings.xml中对应元素的值。例如:<settings><offline>false</offline></settings>通过 ${settings.offline}获得offline的值。 4. Java System Properties: 所有可通过java.lang.System.getProperties()访问的属性都能在POM中使用该形式访问,例如 ${java.home}。 5. x: 在<properties/>元素中,或者外部文件中设置,以${someVar}的形式使用。-->
<properties>
  <project.version>1.0</project.version>
</properties>

9. Repositories 远程仓库配置,可以配置多个。可以配置在<settings>标签中,也可以配置在<profile>标签中(比较常见,配置在<profile>标签中可以根据profile的激活情况动态选择仓库)。配置形式参见《6.Profiles配置》。

10.插件仓库pluginRepositories 和repositories相同。

11. 激活profile配置 activeProfiles,用来激活配置的profile。和 activation 配置相比 activeProfiles 配置比较简单,也比较常用。

<activeProfiles><activeProfile>nexus</activeProfile></activeProfiles>

 三、POM.xml配置文件:

<parent><!--父项目的构件标识符 --><artifactId /><!--父项目的唯一标识符 --><groupId /><!--父项目的版本 --><version /><!-- 父项目的pom.xml文件的相对路径。默认值是../pom.xml。Maven首先在构建当前项目的地方寻找父项目的pom,其次在文件系统的这个位置(relativePath位置),然后在本地仓库,最后在远程仓库寻找父项目的pom。 注意:如果在父项目中通过<modules>指定了子模块,且子模块在父项目目录下,则不需要指定此配置。如果子项目不在父项目的目录下,应该指定此配置。--><relativePath>../pom.xml</relativePath>
</parent><!-- 模型版本 -->
<modelVersion>4.0.0</modelVersion>
<!-- 公司或者组织的唯一标志-->
<groupId>com.companyname.project-group</groupId>
<!-- 项目的唯一ID->
<artifactId>project</artifactId>
<!-- 版本号 -->
<version>1.0</version><!--项目产生的构件类型,例如jar、war、ear、pom -->
<packaging>jar</packaging><!-- 属性配置 -->
<properties><!-- 编译时的编码 --><maven.compiler.encoding>UTF-8</maven.compiler.encoding><spring-boot.version>2.3.7.RELEASE</spring-boot.version>
</properties>
<!-- 依赖配置 -->
<dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter</artifactId><version>${spring-boot.version}</version><scope>compile</scope></dependency>
</dependencies>
<!-- 依赖声明,不会真正引入包。一般在父pom中进行声明,在子pom中真正引入 -->
<dependencyManagement><dependencies><dependency><groupId>cn.hutool</groupId><artifactId>hutool-core</artifactId><version>${hutool.version}</version></dependency></dependencies>
</dependencyManagement>     <!-- 编译构建相关配置 -->
<build><!-- 插件申明,一般在父pom中声明,在子pom中真正引入 --><pluginManagement><plugins><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId><version>${spring-boot.version}</version></plugin></plugins></pluginManagement><!-- 插件引入,在父pom中引入以后,所有子pom中都会引入 --><plugins><plugin><groupId>org.sonarsource.scanner.maven</groupId><artifactId>sonar-maven-plugin</artifactId><version>3.6.0.1398</version></plugin></plugins>
</build>       <!-- 针对当前项目的远程仓库配置 -->
<repositories><repository><id>aliyun-public</id><url>https://maven.aliyun.com/repository/public</url><snapshots><enabled>false</enabled></snapshots><releases><enabled>true</enabled></releases></repository>
</repositories>
<!-- 针对当前项目的远程插件仓库配置 -->
<pluginRepositories><pluginRepository><id>aliyun-public</id><url>https://maven.aliyun.com/repository/public</url><snapshots><enabled>false</enabled></snapshots><releases><enabled>true</enabled></releases></pluginRepository>
</pluginRepositories><!--jar包发布私服配置-->
<distributionManagement><repository><!-- 此ID和setting.xml 中server中配置的服务器进行对应 --><id>maven-releases</id><name>releases</name><url>http://nexus.maven.cn/repository/maven-releases/</url><uniqueVersion>true</uniqueVersion></repository><snapshotRepository><id>maven-snapshots</id><name>snapshots</name><url>http://nexus.maven.cn/repository/maven-snapshots/</url></snapshotRepository>
</distributionManagement><!--动态构建配置,通过设置活动的profile,profile中的配置会作用于当前的项目编译构建 -->
<profiles><profile><id>dev</id><properties><spring.profiles.active>dev</spring.profiles.active></properties><activation><activeByDefault>true</activeByDefault></activation></profile><profile><id>prod</id><properties><spring.profiles.active>prod</spring.profiles.active></properties></profile>
</profiles>

四、远程仓库的加载

maven仓库依赖下载顺序:

1,在settings.xml文件中配置的本地仓库中寻找依赖,没找到则进入第2步。

2,在settings.xml文件中配置的全局远程仓库中寻找,没找到则进入第3步。

3,在当前项目的pom.xml中配置的远程仓库中寻找,如果没找到则进入第4步。

4,在中央仓库 https://repo.maven.apache.org/maven2 中寻找,如果没找到则抛出依赖无法加载异常。

镜像替换:

1,如果在找寻的过程中,如果发现该仓库有镜像匹配,则直接从镜像仓库中加载。

2,如果仓库的 id 设置成 <mirrorOf>central</mirrorOf>,则会覆盖 maven 的中央仓库配置。

3,如果镜像 ID 设置为 <mirrorOf>*</mirrorOf> 表示匹配所有的仓库,则所有依赖只从此镜像仓库中下载。

4,如果镜像ID 设置为 <mirrorOf>repo1,repo2</mirrorOf>,则匹配仓库repo1和repo2,使用逗号分隔多个远程仓库

5,如果镜像ID设置为 <mirrorOf>*,!repo1</miiroOf>匹配所有远程仓库,repo1除外,使用感叹号将仓库从匹配中排除

 建议将镜像地址作为一个 普通仓库repository 进行配置,这样可以在其他 仓库下载不了的情况下查找到此仓库。如果配置了镜像仓库代替其他仓库容易出现在镜像中找不到依赖,导致项目无法编译的问题。

 原创文章,引用请注明出处,并联系本人征得本人同意后才可转载。

 


http://chatgpt.dhexx.cn/article/ilrFRgXV.shtml

相关文章

Maven配置(IDEA配置)

目录 Maven配置IDEA配置配置Tomcat聚合开发 1、Maven配置 &#x1f373;、下载maven 官方&#xff1a;http://maven.apache.org/download.html &#x1f373;、解压即用&#xff0c;直接解压到指定目录 &#x1f373;、配置环境变量跟Java一样 主要配置M_HOME环境变量&#…

Maven安装和配置详细教程

一、安装Maven 1.官网下载 Binary是可执行版本&#xff0c;已经编译好可以直接使用。 Source是源代码版本&#xff0c;需要自己编译成可执行软件才可使用。 tar.gz和zip两种压缩格式,其实这两个压缩文件里面包含的内容是同样的,只是压缩格式不同 tar.gz格式的文件比zip文件小很…

数据库左连接和右连接有什么区别!

大家好我是艺霏&#xff0c;今天和大家谈一下数据库左连接和右连接有什么区别&#xff1f; 数据库中的左连接和右连接的区别可以概括为一句话来表示即左连接where只影响右表&#xff0c;右连接where只影响到左表 image.png 在这里推荐一个MySQL方面的教程 数据库中的左连接(…

左右连接和内外连接

左连接 select 列1,列2,列N from tableA left join tableB on tableA.列 tableB.列(正常是一个外键列) [此处表连接成一张大表&#xff0c;完全当成一张普通表看] where,having,group by …照常写。 右连接 select 列1,列2,列N from tableA right join tableB on ta…

秋招被问mysql左连接和右连接的区别?

hello我是辰兮&#xff0c;最近项目常常和mysql打交道&#xff0c;让我想起来我去年秋招的一到面试题&#xff0c;整理分享出来&#xff0c;菜是原罪&#xff0c;不过一起进步吧&#xff01; 去年秋招面试官就问我&#xff1a;数据库左连接和右连接有什么区别&#xff1f; 基…

mysql左连接区别_Mysql----左连接、右连接、内连接、全连接的区别

最近,突然想起来数据库有好些时间没用到,所以,想把数据库有关的知识回顾一下,所以接下来这个月,基本上会以数据库的帖子来写为主,首先,很多同学都会有个错觉,觉得学习数据库会sql语句的增删改查就够了,其实,这仅仅是片面的认知,掌握了这些还远远不够,sql是你作为谋求…

内连接,左右连接的区别

内连接&#xff0c;左右连接的区别 通过Mysql数据库实际操作演示&#xff0c;来展示该三者的区别。数据库版本&#xff1a;mysql Ver 8.0.19 先创建两个表test1和test2 sql语句&#xff1a; CREATE TABLE test1 (a_id int(11) DEFAULT NULL,a_name varchar(10) DEFAULT NUL…

数据库中的左连接和右连接的区别

数据库中的左连接和右连接的区别 今天&#xff0c;别人问我一个问题&#xff1a;数据库中的左连接和右连接有什么区别&#xff1f;如果有A&#xff0c;B两张表&#xff0c;A表有3条数据&#xff0c;B表有4条数据&#xff0c;通过左连接和右连接&#xff0c;查询出的数据条数最少…

mysql左连接和右连接_MYSQL 左连接与右连接

一、 LEFT JOIN LEFT JOIN 关键字从左表(table1)返回所有的行&#xff0c;即使右表(table2)中没有匹配。如果右表中没有匹配&#xff0c;则结果为 NULL。 语法&#xff1a; SELECT column_name(s) FROM table1 LEFT JOIN table2 ON table1.column_nametable2.column_name; 举例…

mysql 左连接与右连接的区别吗_数据库左连接和右连接有什么区别

数据库中的左连接和右连接的区别可以概括为一句话来表示即左连接where只影响右表,右连接where只影响到左表 【推荐课程:MySQL教程】 数据库中的左连接(left join)和右连接(right join)区别 左连接(Left Join)select * from tbl1 Left Join tbl2 where tbl1.ID = tbl2.ID 左连…

左连接与右连接比较

目录 右外连接和左外连接有什么区别 左连接如何工作 右连接的工作原理 外连接比较 右连接比较 左连接比较 右外连接和左外连接有什么区别 欢迎回来。在本课中&#xff0c;我们将学习右连接和左连接之间的区别。 左外连接和右外连接的区别与表位置有关。left和right指的…

数据库中的左连接和右连接

1、两张表的内容为&#xff1a; 2、左连接&#xff08;Left Join&#xff09;&#xff1a;只影响右表中的内容&#xff0c;结构集为左表的内容右表中与左表相匹配的内容。 也就是表明左链接是以关键字左边的表为主&#xff0c;在加上右表与左表相匹配的内容。 第一种&#xf…

C# combox

添加项 代码写选种哪一项 如何在下拉项中插入一个项

pyqt5---combox

#添加下拉框内容 self.combox.additem(一) self.combox.additem(一)#设置当前的索引 self.combox.setCurrentIndex(0)#获取当前选择的索引 self.combox.currentIndex()#下拉框选择索引改变槽函数 self.combox.curentIndexChanged.connect(self.func)#qss样式

WPF空心圆角combox

VS自带的控件总是觉得不够美观&#xff0c;而xaml语言提供了一个自己编写控件样式的可能性 效果图&#xff1a; xaml代码&#xff1a; <ComboBox.Resources><Style TargetType"{x:Type ComboBox}"><Setter Property"Width" Value"12…

WPF ComBox绑定数据

1、xmal文件中添加 DisplayMemberPath、SelectedValuePath属性 <ComboBox Name"MeaType" RenderTransformOrigin"1.72,2.273" Canvas.Left"48" Canvas.Top"226" Width"110" DisplayMemberPath"Name" Selecte…

可多选的combox

我们很多时候用到的是combox单选的功能&#xff0c;如果需要多选怎么办呢&#xff1f;这就需要combox的一个属性 multiple:true JS代码&#xff1a; $(#institution).combobox({url : queryinstitutionList,valueField : id,textField : InstitutionName,multiple:true,edit…

控件combox

目录(?)[] 一 combox显示二 取数据三实例 来自CODE的代码片 TestControlerscs 一. combox显示 首先combox有两个属性来存储数据&#xff1a;DisplayMember(显示成员),ValueMember(值成员) &#xff0c;DisplayMember是我们在combox界面上看到的&#xff0c;ValueMember是隐藏…

wpf 自定义combox控件

关键步骤 1、新建usercontrol使用基本的控件进行设计 2、依赖属性的定义&#xff0c;目的&#xff1a;外部调用时候能够使用属性进行控件样式的控制 例如 Width"200" DisplayMemberPath"Name" SelectedItem"{Binding SelectedItem,ModeTwoWay}&…

EasyUI中Combox组合框的简单使用

场景 效果 用法 从带有预定义结构的 <select> 元素创建组合框&#xff08;combobox&#xff09;。 <select id"cc" class"easyui-combobox" name"dept" style"width:200px;"><option value"aa">aitem1…