springboot 自定义pom内子依赖版本

使用springboot集成ES过程中,出现了ES的版本和本地安装版本不一致的问题
引入依赖:

<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-data-elasticsearch</artifactId>
</dependency>

最后发现依赖内部的ES版本是6.4.3,而本地安装的是7.6.1,版本不一致可能会引起很多问题,所以需要更换starter依赖的ES版本!
springboot 自定义pom内子依赖版本_第1张图片
在pom文件中找到spring-boot-starter-parent,按住CTRL左键点击

<parent>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-parent</artifactId>
		<version>2.1.8.RELEASE</version>
		<relativePath/> <!-- lookup parent from repository -->
</parent>

然后CTRL左键点击

<artifactId>spring-boot-dependencies</artifactId>

然后找到你需要修改的依赖标签,将其复制,回到pom文件
springboot 自定义pom内子依赖版本_第2张图片
在properties标签中修改即可

<properties>
		<java.version>1.8</java.version>
		<jjwt.version>0.10.5</jjwt.version>
		<elasticsearch.version>7.6.1</elasticsearch.version>
	</properties>

springboot 自定义pom内子依赖版本_第3张图片

你可能感兴趣的:(springboot 自定义pom内子依赖版本)