We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8625110 commit e106e02Copy full SHA for e106e02
TROUBLESHOOTING.md
@@ -0,0 +1,17 @@
1
+# Troubleshooting
2
+
3
+## The tests fail with java.lang.NoSuchMethodError
4
+* After updating the Kotlin version, there may be multiple copies of the compiler plugin in `lib-kotlin`, for example:
5
6
+```
7
+lib-kotlin
8
+├───j2k-1.2.72-release-68.jar <- old version
9
+├───j2k-1.3.11-release-272.jar
10
+├───kotlin-plugin-1.2.72-release-68.jar <- old version
11
+└───kotlin-plugin-1.3.11-release-272.jar
12
13
14
+* The issue is that the compiler finds multiple versions of the same class on the classpath
15
+* To fix this, simply remove the older JARs
16
+* If that still does not work, delete the entire `lib-kotlin` folder
17
+ * Gradle will automatically re-download the necessary files once the project is built again
0 commit comments