Gradle项目在IDEA中运行时提示:Unnecessarily replacing a task that does not exist is not supported. Use create

场景

在IDEA中新建Gradle项目后,使用Java语言。

新建类后添加main方法,然后运行main方法释提示:

could not create task ':HelloWorldServer.main()'.
   > Unnecessarily replacing a task that does not exist is not supported.  Use create() or register() directly instead.

 

Gradle项目在IDEA中运行时提示:Unnecessarily replacing a task that does not exist is not supported. Use create_第1张图片

注:

博客:
https://blog.csdn.net/badao_liumang_qizhi
关注公众号
霸道的程序猿
获取编程相关电子书、教程推送与免费下载。

实现

这是因为在运行main方法时,gradle并没有识别,将其认为是一个task。

来到项目下的.idea下的gradle.xml文件

将下面的设置改为false

如果没有则添加该配置。

 

Gradle项目在IDEA中运行时提示:Unnecessarily replacing a task that does not exist is not supported. Use create_第2张图片

 


 

你可能感兴趣的:(架构之路,gradle)