What problem are you trying to solve?
The com.intellij:annotations package was relocated to org.jetbrains:annotations after v12 (2013)
This caused confusion and many teams are unaware and still using the old coordinates.
Describe the situation after applying the recipe
There are various examples, but here is one :
import com.intellij.annotations.NotNull
-import com.intellij.annotations.NotNull
+import org.jetbrains.annotations.NotNull