0
点赞
收藏
分享

微信扫一扫

Maven - Error:java: Annotation processing is not supported for module cycles. Please ensure that all


错误信息

Error:java: Annotation processing is not supported for module cycles. Please ensure that all modules from cycle [qrcode-common,qrcode-manager-pojo] are excluded from annotation processing


分析原因

cycle [qrcode-common,qrcode-manager-pojo] :从这里可以看出,qrcode-common,qrcode-manager-pojo这两个模块有问题,即互相依赖,类似死循环。


解决方法

Maven - Error:java: Annotation processing is not supported for module cycles. Please ensure that all_Annotation

Maven - Error:java: Annotation processing is not supported for module cycles. Please ensure that all_Maven_02

  • 当然也可以用<exclusions>来屏蔽不想要的包,避免死循环。


举报

相关推荐

0 条评论