maven项目jar包版本错误:'dependencies.dependency.version' for xxx:jar is missing. @ line xx, column xx
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
免费下载资源
·
[ERROR] The project XXX (/home/×××/pom.xml) has 1 error
[ERROR] 'dependencies.dependency.version' for xxx:jar is missing. @ line xx, column xx
maven项目中
父项目的pom.xml通过
<modules>
<module>XXX</module>
</modules>
将子项目载入
子项目中的pom.xml通过
<parent>
<artifactId>YYY</artifactId>
<groupId>com.ZZZ</groupId>
<version>1.0.0</version>
</parent>
配置父项目
那么可以只在父项目的pom.xml定义所需依赖的jar包的版本即可,子项目只需要简单引用
但是尝试多次,子项目加载时总是报如上缺少jar包版本信息的错误
[ERROR] 'dependencies.dependency.version' for xxx:jar is missing. @ line xx, column xx
maven项目中
父项目的pom.xml通过
<modules>
<module>XXX</module>
</modules>
将子项目载入
子项目中的pom.xml通过
<parent>
<artifactId>YYY</artifactId>
<groupId>com.ZZZ</groupId>
<version>1.0.0</version>
</parent>
配置父项目
那么可以只在父项目的pom.xml定义所需依赖的jar包的版本即可,子项目只需要简单引用
但是尝试多次,子项目加载时总是报如上缺少jar包版本信息的错误
折腾了很久发现是在设置父项目的依赖jar包时外层少加了这个依赖版本管理的标签<dependencyManagement>
<dependencyManagement> <dependencies>
GitHub 加速计划 / de / Dependencies
8.61 K
704
下载
A rewrite of the old legacy software "depends.exe" in C# for Windows devs to troubleshoot dll load dependencies issues.
最近提交(Master分支:2 个月前 )
1997a400 - 2 年前
2f423539 - 2 年前
更多推荐
已为社区贡献1条内容
所有评论(0)