8

This may sound stupid but here I go (there's no silly question after all, right?): I'm working on a JAVA Maven module with IntelliJ IDEA and the code completion feature works fine suggesting classes from both my module and the JDK.

However, the code completion feature does not seem to be aware of classes coming from Maven dependencies my module depends on.

For instance, my module depends on Maven dependencies such as joda-time. The code completion popup does not suggest classes such as LocalDate.

Here's my code completion configuration:

code-completion-configuration

What am I missing? Thanks in advance.

kyiu
  • 1,926
  • 1
  • 24
  • 30

2 Answers2

14

Found the solution:

  1. Clicked on File > Invalide caches/restart
  2. Chose Invalidate and Restart
  3. After restarting IntelliJ rebuild indexes from scratch and code completion works like a charm.
Tuna
  • 2,937
  • 4
  • 37
  • 61
kyiu
  • 1,926
  • 1
  • 24
  • 30
  • I am still getting bugs witht the latest intellij (183.5912.21), invalidating caches and restarting sometimes works but not always – Robbie Cronin Mar 08 '19 at 01:51
0

Intellij right top

If it is a Gradle or Maven Project As shown in the picture, you may need to import your project build.gradle file if Gradle or maven bom.xml file if Maven. It will sync your project and may download required files from gradle or maven server.

@SenzMate Iot Intelligence