How to remove module from gradle build tools

已回答

Hello everyone, I'm recently creating new project with IntelliJ, but I accidentally choose build tools is Gradle, after that I remove the module and create another module name order-service with Maven but the Gradle know that module it builds by Gradle, how can I remove the Gradle project 

0
The order-service project or module seems to be managed by Gradle. You can unlink the module from gradle window as described here : https://www.jetbrains.com/help/idea/work-with-gradle-projects.html#ignore_detach_gradle_project 
If you see pom.xml in your module, you can reimport it as a maven module https://www.jetbrains.com/help/idea/maven-support.html#maven_import_project_start 
0

I follow your step, but in the Gradle context doesn't have order-service

0

UPDATED: I fix it, just delete the project folder and clone the repository again

0
Could you close the IDE, move the .idea directory from the project home to another non-project directory then reimport the project by using Open -> Double-click the root pom.xml and import project. 
0

请先登录再写评论。