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.
2 parents 1093f44 + 5fb055a commit 9402a44Copy full SHA for 9402a44
shared/src/main/resources/projectClassPathFinder.gradle
@@ -58,6 +58,21 @@ allprojects { project ->
58
}
59
60
61
+
62
63
+ // handle kotlin multiplatform style dependencies if any
64
+ def kotlinExtension = project.extensions.findByName("kotlin")
65
+ if(kotlinExtension && kotlinExtension.hasProperty("targets")) {
66
+ def kotlinSourceSets = kotlinExtension.sourceSets
67
68
+ // Print the list of all dependencies jar files.
69
+ kotlinExtension.targets.names.each {
70
+ def classpath = configurations["${it}CompileClasspath"]
71
+ classpath.files.each {
72
+ System.out.println "kotlin-lsp-gradle $it"
73
+ }
74
75
76
77
78
0 commit comments