记一次Maven项目Dependencies报红波浪线解决方案
Dependencies
A rewrite of the old legacy software "depends.exe" in C# for Windows devs to troubleshoot dll load dependencies issues.
项目地址:https://gitcode.com/gh_mirrors/de/Dependencies
免费下载资源
·
记一次Maven项目Dependencies报红波浪线解决方案
问题:
但是已经将这个东西下载到了本地仓库,重复的reimport,依旧会出现红色波浪线爆红。
说一下在网上找到的解决方案:
- 在pom.xml中剪切,然后reimport,再粘贴,在reimport
- mvn clean 然后 mvn install
- 更改仓库地址 为阿里云仓库地址
<mirror>
<id>aliyunmaven</id>
<mirrorOf>*</mirrorOf>
<name>阿里云公共仓库</name>
<url>https://maven.aliyun.com/repository/public</url>
</mirror>
- 这位老哥的博客 写的挺好 可以去看下
https://blog.csdn.net/weixin_43950568/article/details/95092830
综上 都没有解决我的dependencies爆红。。。。。
说下我的解决方法
先吐槽下这个maven仓库地址的验证(人类人类,你这是给人类做的验证吗?尼玛十遍八遍的验证不过去,这么狗屁复杂的图片,这个人类验证系统是有病吧 辣鸡系统 这尼玛也叫防机器,这根本防人吧)
在maven仓库中搜索我们需要的依赖
可以看到在maven仓库中的依赖是这个样子的
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<version>10.2.0.4.0</version>
</dependency>
而我在我的工程中引用的也是这个,可是死活就是爆红,说在aliyun仓库中没有?
我本地用的阿里的仓库
好,那去阿里的仓库找下
可以看到,阿里所对应的库 全都带了个type
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<version>10.2.0.4.0</version>
<type>pom</type>
</dependency>
本地加上
ok不报红了
GitHub 加速计划 / de / Dependencies
27
1
下载
A rewrite of the old legacy software "depends.exe" in C# for Windows devs to troubleshoot dll load dependencies issues.
最近提交(Master分支:5 个月前 )
1997a400 - 3 年前
2f423539 - 3 年前
更多推荐
已为社区贡献3条内容
所有评论(0)