My maven environment or IntelliJ may get some issue. I can compile project with mvn clean install at command line, but in IntelliJ, it still says can't find some library. For example:
It gives a red flag saying can't find "deeplearning4j-examples-parent", but actually it exists. still, I can run program in this project in IntelliJ. But the red flag is annoying.
<parent>
<groupId>org.deeplearning4j</groupId>
<artifactId>deeplearning4j-examples-parent</artifactId>
<version>0.9.1</version>
</parent>
Is there a way in IntelliJ to debug this type of red flags? In Eclipse, there is a clean project options that usually helps.
Edit: I added a screenshot. The problem now is no any red flag in pom.xml or code, but some red flags in the plugins, also some red flags in dependencies shown in this "Maven Project" view. No any red flags in pom. mvn clean install works all fine. Didn't report anything missing.