
maven
万山寒
这个作者很懒,什么都没留下…
展开
-
maven下载不了仓库地址为https的依赖jar,配置参数忽略ssl安全检查
maven下载不了仓库地址为https的依赖jar,配置参数忽略ssl安全检查原创 2023-08-24 17:28:39 · 4273 阅读 · 0 评论 -
maven配置阿里云镜像,配置settings文件,包含配置阿里云镜像,配置maven私服,配置私服密码
maven配置阿里云镜像,配置settings文件,包含配置阿里云镜像,配置maven私服,配置私服密码原创 2023-08-09 14:24:02 · 4697 阅读 · 0 评论 -
maven配置pom将不在resource下的配置文件打进包内
maven配置pom将非resource下的文件打进包内原创 2023-08-03 16:11:08 · 1572 阅读 · 0 评论 -
target\surefire-reports for the individual test results.错误解决方法
target\surefire-reports for the individual test results.错误解决方法原创 2023-03-13 14:31:53 · 11075 阅读 · 0 评论 -
maven导出项目pom依赖的jar包,并且导出时保留本地仓库jar包的父文件夹
maven导出项目pom依赖的jar包,导出时保留本地仓库jar包的父文件夹,导出指定特定jar包原创 2023-01-30 10:23:44 · 1790 阅读 · 0 评论 -
springboot使用本地Jar包
springboot使用本地Jar包原创 2023-01-28 15:22:42 · 2642 阅读 · 0 评论 -
maven打包找不到程序包错误或找不到符号,但idea编译、运行都正常
maven打包找不到程序包错误或找不到符号,但idea编译、运行都正常原创 2022-10-10 17:20:16 · 2781 阅读 · 0 评论 -
download sources报错: Cannot connect to the Maven process. Try again later. If the problem persists
idea下载源码时报异常 Cannot connect to the Maven process. Try again later. If the problem persists, check the Maven Importing JDK settings and restart IntelliJ IDEA原因mavne的jdk设置和项目不匹配解决办法把maven的import的jdk修改成项目版本jdk...原创 2022-03-30 17:36:48 · 880 阅读 · 1 评论 -
dependencyManagement和dependencies的使用
dependencyManagement在父子项目中,方便父项目统一管理依赖。子项目中引用一个依赖可以不用表明version和scope。Maven会沿着父子层次向上走,直到找到一个拥有dependencyManagement元素的项目,然后它就会使用在这个dependencyManagement元素中指定的版本号dependencies与dependencyManagement的区别dependencies即使在子项目中不写该依赖项,那么子项目仍然会从父项目中继承该依赖项(全部继承)depend原创 2021-12-07 13:51:34 · 773 阅读 · 0 评论