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