Adding my project to a new machine and having some struggles importing it in IntelliJ.
Using Java, Spring Boot, Gradle, Maven, latest stable IntelliJ.
My issues are that:
1) The thing is set up with "main1, main2, main3, main4" which I don't think is the correct way for IntelliJ to read the project structure
2) The imports aren't working
import org.springframework.boot.SpringApplication;
returns:
Cannot resolve symbol SpringApplication
How do I remove the project and import it again correctly?
I see this similar answer, but need a little more handholding:
Cannot resolve symbol SpringApplication
Where do I find these directories to delete them? When I import, do I need to run gradlew clean build or mvn import to make sure my dependencies are being imported? It seems to be trying (and failing) to compile the js client files when I run these, which I don't think is correct.