Gradle插件在Intellij IDEA(计算任务图)中不起作用?

时间:2016-09-03 09:53:26

标签: intellij-idea gradle gradle-plugin

问题是Intellij IDEA中的gradle插件不能与我的项目一起使用。如果我使用" gradle build"在命令行中它工作得很好,但如果我尝试使用Intellij IDEA中的gradle插件构建项目,它就不起作用了。它显示了任务中的一些错误"计算任务图"。它是什么? enter image description here 为什么它不起作用?

这是控制台输出:

6:21:57 PM: Executing external tasks 'gradle build'...

FAILURE: Build failed with an exception.

* What went wrong:
Task 'gradle' not found in root project 'upload-server'.

* Try:
Run gradle tasks to get a list of available tasks. Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED

Total time: 3.899 secs
Task 'gradle' not found in root project 'upload-server'.
6:22:01 PM: External tasks execution finished 'gradle build'.

4 个答案:

答案 0 :(得分:9)

要查看错误,请点击左上角的该图标。它将在控制台输出视图和其他视图之间切换。

答案 1 :(得分:7)

问题是因为我在插件中使用了“gradle build”命令来构建项目,但是在gradle插件中你不需要在任务之前使用“gradle”。
所以,我运行“build”命令,它现在正在运行。

答案 2 :(得分:1)

面临同样的问题。当我使用 build.gradle(module.app) 版本不一样。

       compile 'com.google.firebase:firebase-core:11.0.0'


compile 'com.google.android.gms:play-services-auth:11.0.1'

Build>清理项目 我看到了运行该项目时遇到的确切问题。

只需更正版本,然后运行项目

   compile 'com.google.firebase:firebase-core:11.0.0'


compile 'com.google.android.gms:play-services-auth:11.0.0'

答案 3 :(得分:-1)

添加到build.gradle。并清理你的项目。展示你的任务。

repositories {
    mavenCentral()
}