Module … is not backed by gradle

前端 未结 10 773
一整个雨季
一整个雨季 2021-02-04 23:03

I\'m using IntelliJ IDEA Pro 13.1.2. Never used any versions below 13.

When trying to run build.gradle from IDE I get the message:

M

相关标签:
10条回答
  • 2021-02-04 23:20

    Like others have said, none of the other answers worked for me. The only thing that worked was:

    Close the project, then import it as a Gradle project.

    0 讨论(0)
  • 2021-02-04 23:31

    This problem happened for me because I chose a different name for my project than my artifactID. In order to prevent this problem to happen, make sure your project name is the same as your artifactID.

    0 讨论(0)
  • 2021-02-04 23:32

    If you didn't set up the IDE project via "Import Project" and then pointing to a Gradle project, you may have to link the IDE project to the Gradle project. This can be done in the "Gradle" window.

    0 讨论(0)
  • 2021-02-04 23:34

    I fixed this problem by clicking in the Menu

    --> "Run" 
    --> "Edit Configurations" 
    --> [+] The little plus in the top left corner 
    --> "Gradle"
    

    With the new created run configuration it worked. I hope this will help some of you.

    0 讨论(0)
  • 2021-02-04 23:38

    For a non-gradle project, you can also remove the module from the project and re-import it. This will help avoid the message "module is not backed by gradle".

    0 讨论(0)
  • 2021-02-04 23:42

    The answer that worked for me is to restart IntelliJ - at startup build.gradle is identified and the project is set up.

    The only thing that worked for me was to use the menu File > Close Project and reopen it. IDEA popped up a dialog saying "Import project from Gradle files" or something to that effect.


    Dead ends: Below is a list of dead ends, so don't waste your time with them. I kept seeing "module is not backed by gradle" despite following all these proposed solutions:

    1. There was no Gradle tool window, so I couldn't synchronize the project
    2. Clicking File > Open gradle.build opens the file for editing and doesn't solve the issue
    3. Creating a run configuration that runs gradle has no effect, even after I saw a build/ folder created
    4. Runing ./gradlew from the commandline only creates files for gradle and doesn't fix IntelliJ
    0 讨论(0)
提交回复
热议问题