File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
server/src/main/resources Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 1
1
import org.gradle.kotlin.dsl.accessors.AccessorsClassPathKt
2
+ import org.gradle.kotlin.dsl.accessors.PluginAccessorsClassPathKt
2
3
import org.gradle.internal.classpath.ClassPath
3
4
4
5
allprojects { project ->
@@ -11,8 +12,14 @@ allprojects { project ->
11
12
.forEach { System . out. println " kotlin-lsp-gradle $it " }
12
13
13
14
// List dynamically generated Kotlin DSL accessors (e.g. the 'compile' configuration method)
14
- def accessors = AccessorsClassPathKt . projectAccessorsClassPath(project, ClassPath . EMPTY )
15
- accessors. bin. asFiles
15
+ AccessorsClassPathKt . projectAccessorsClassPath(project, ClassPath . EMPTY )
16
+ .bin
17
+ .asFiles
18
+ .forEach { System . out. println " kotlin-lsp-gradle $it " }
19
+
20
+ PluginAccessorsClassPathKt . pluginSpecBuildersClassPath(project)
21
+ .bin
22
+ .asFiles
16
23
.forEach { System . out. println " kotlin-lsp-gradle $it " }
17
24
}
18
25
}
You can’t perform that action at this time.
0 commit comments