2020
11-06
11-06
详解Maven项目Dependencies常见报错及解决方案
个人最近项目中所遇到的问题,记录下便自己和同样遇到问题的小伙伴提供一个参考。通常Maven里报红波浪线的常见问题①可能是子工程没有继承父工程注意父工程中有中对应的module:<groupId>com.fred.parent</groupId><artifactId>mall</artifactId><version>1.0-SNAPSHOT</version><modules><module>fred-api</module></modules>注意子工程中有对应的parent:<parent><groupId>com.fred.parent</groupId><artifactId>mall</...
继续阅读 >