File tree 1 file changed +16
-8
lines changed
server/src/main/resources
1 file changed +16
-8
lines changed Original file line number Diff line number Diff line change 1
1
allprojects { project ->
2
2
task kotlinLSPProjectDeps { task ->
3
- doLast {
3
+ doLast {
4
4
System . out. println " "
5
5
System . out. println " gradle-version $gradleVersion "
6
6
System . out. println " kotlin-lsp-project ${ project.name} "
@@ -29,6 +29,14 @@ allprojects { project ->
29
29
30
30
System . out. println " kotlin-lsp-gradle $userClasses "
31
31
32
+ def userVariantClasses = project. getBuildDir(). absolutePath +
33
+ File . separator + " intermediates" +
34
+ File . separator + " javac" +
35
+ File . separator + variantBase +
36
+ File . separator + " classes"
37
+
38
+ System . out. println " kotlin-lsp-gradle $userVariantClasses "
39
+
32
40
variant. getCompileClasspath(). each {
33
41
System . out. println " kotlin-lsp-gradle $it "
34
42
}
@@ -62,11 +70,11 @@ allprojects { project ->
62
70
}
63
71
}
64
72
65
- task kotlinLSPAllGradleDeps {
66
- doLast {
67
- fileTree(" $gradle . gradleHomeDir /lib" )
68
- .findAll { it. toString(). endsWith ' .jar' }
69
- .forEach { System . out. println " kotlin-lsp-gradle $it " }
70
- }
71
- }
73
+ task kotlinLSPAllGradleDeps {
74
+ doLast {
75
+ fileTree(" $gradle . gradleHomeDir /lib" )
76
+ .findAll { it. toString(). endsWith ' .jar' }
77
+ .forEach { System . out. println " kotlin-lsp-gradle $it " }
78
+ }
79
+ }
72
80
}
You can’t perform that action at this time.
0 commit comments