Relocate the R8 Kotlin dependencies - missed some

This is in addition to what is already in
https://r8-review.googlesource.com/c/r8/+/22680

Missed the org/intellij/ package classes in dependecy annotations-13.0.jar.

Bug: 78896810, 110462870
Change-Id: I3405519f089e71bfb2ea1ea4503e8a91952120bf
diff --git a/build.gradle b/build.gradle
index 7761e37..abefa15 100644
--- a/build.gradle
+++ b/build.gradle
@@ -504,6 +504,7 @@
     task.relocate('kotlin', 'com.android.tools.r8.jetbrains.kotlin')
     task.relocate('kotlinx', 'com.android.tools.r8.jetbrains.kotlinx')
     task.relocate('org.jetbrains', 'com.android.tools.r8.org.jetbrains')
+    task.relocate('org.intellij', 'com.android.tools.r8.org.intellij')
 }
 
 task repackageDeps(type: ShadowJar) {