2

I am new in IntelliJ IDEA, I just install 1 maven project; when I compile it from the terminal using mvn compile I got BUILD SUCCESS :

[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ cartas ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 11 resources
[INFO]
[INFO] --- maven-compiler-plugin:3.1:[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ leads ---
[INFO] Nothing to compile - all classes are up to date
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 30.596 s
[INFO] Finished at: 2019-08-01T09:00:34+02:00
[INFO] Final Memory: 50M/312M
[INFO] ------------------------------------------------------------------------

But in the IDE , I got some errors in a lot of plugins:

enter image description here

I am using:

IntelliJ IDEA 2019.2 (Community Edition)
Build #IC-192.5728.98, built on July 23, 2019
Runtime version: 11.0.3+12-b304.10 amd64
VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
Windows 10 10.0

and use plugin registry checked in the maven settings of IntelliJ.

Michael Piefel
  • 18,660
  • 9
  • 81
  • 112
Sandro Rey
  • 2,429
  • 13
  • 36
  • 80

2 Answers2

1

Known bug in IDEA 2019.2, should be fixed in 2019.2.1 or/and 2019.3

https://youtrack.jetbrains.com/issue/IDEA-219033

Kevin Davin
  • 511
  • 1
  • 4
  • 12
1

Delete the maven folder from C:\Users\%USERNAME%\.m2\repository\org\apache. After you have deleted the directory please restart your IDE and wait for the packages to download

Chris Maggiulli
  • 3,375
  • 26
  • 39
Bob Sarfo
  • 19
  • 2