gradle构建错误:
Build file 'D:\movierecommend\build.gradle' line: 33
A problem occurred evaluating root project 'movie-recommend'.
org.gradle.api.internal.artifacts.publish.ArchivePublishArtifact.<init>(Lorg/gradle/api/tasks/bundling/AbstractArchiveTask;)V
Try:
Run with --stacktrace option to get the stack trace.
Run with --info or --debug option to get more log output.
Run with --scan to get full insights.
Get more help at https://help.gradle.org.
line 33代码:apply plugin: 'org.springframework.boot'
没有在网上搜索到同样的报错,希望大佬帮我看一下
这种情况通常都是你使用的插件版本和你的gradle版本不匹配,参考插件支持的gradle版本说明进行调整。
如果你的springboot工程提供了gradle wrapper,那你可以使用gradle wrapper代替gradle命令:
也就是将
gradle
命令全部换为gradle wrapper脚本./gradlew
通常项目中的gradle wrapper都是跟着项目支持的gradle 版本走的,建议用这个。