@@ -22,50 +22,29 @@ startScripts {
22
22
}
23
23
24
24
repositories {
25
- maven { url ' https://repo.gradle.org/gradle/libs-releases' }
26
25
maven { url uri(" $projectDir /lib" ) }
27
- mavenCentral()
28
- teamcityServer {
29
- url = teamCityUrl
30
- credentials {
31
- username = teamCityUsername
32
- password = teamCityPassword
33
- }
34
- }
35
- }
36
-
37
- configurations {
38
- kotlinJVMLib
39
26
}
40
27
41
28
dependencies {
42
- def kotlinPluginTC = " $kotlinBuildType :$kotlinBuild :kotlin-plugin-${ kotlinPluginBuild} .zip!/Kotlin"
43
-
44
29
implementation project(' :shared' )
45
30
implementation ' org.eclipse.lsp4j:org.eclipse.lsp4j:0.7.0'
46
31
implementation ' org.eclipse.lsp4j:org.eclipse.lsp4j.jsonrpc:0.7.0'
47
- implementation ' org.jetbrains.kotlin:kotlin-compiler'
48
- implementation ' org.jetbrains.kotlin:kotlin-scripting-compiler'
49
- implementation ' org.jetbrains.kotlin:kotlin-scripting-compiler-impl'
50
- implementation ' org.jetbrains.kotlin:kotlin-scripting-jvm-host-unshaded'
51
- implementation ' org.jetbrains.kotlin:kotlin-reflect'
32
+ implementation " org.jetbrains.kotlin:kotlin-compiler:$kotlinVersion "
33
+ implementation " org.jetbrains.kotlin:kotlin-scripting-compiler:$kotlinVersion "
34
+ implementation " org.jetbrains.kotlin:kotlin-scripting-compiler-impl:$kotlinVersion "
35
+ implementation " org.jetbrains.kotlin:ide-common-ij201:$kotlinVersion "
36
+ implementation " org.jetbrains.kotlin:kotlin-scripting-jvm-host-unshaded:$kotlinVersion "
37
+ implementation " org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion "
52
38
implementation ' org.jetbrains:fernflower:1.0'
53
39
implementation ' com.beust:jcommander:1.78'
54
40
55
- // Re-add to depend on Kotlin plugin classes directly. Note that
56
- // this plugin uses the normal imports (com.intellij.*)
57
- // instead of the embedded ones (org.jetbrains.kotlin.com.intellij.*)
58
- // as used by kotlin-compiler-embeddable, ktlint, etc.
59
-
60
- // kotlinJVMLib tc("$kotlinPluginTC/lib/kotlin-plugin.jar")
61
-
62
41
testImplementation ' org.hamcrest:hamcrest-all:1.3'
63
42
testImplementation ' junit:junit:4.11'
64
43
testImplementation ' org.openjdk.jmh:jmh-core:1.20'
65
44
66
45
// See https://github.com/JetBrains/kotlin/blob/65b0a5f90328f4b9addd3a10c6f24f3037482276/libraries/examples/scripting/jvm-embeddable-host/build.gradle.kts#L8
67
- compileOnly ' org.jetbrains.kotlin:kotlin-scripting-jvm-host'
68
- testCompileOnly ' org.jetbrains.kotlin:kotlin-scripting-jvm-host'
46
+ compileOnly " org.jetbrains.kotlin:kotlin-scripting-jvm-host: $k otlinVersion "
47
+ testCompileOnly " org.jetbrains.kotlin:kotlin-scripting-jvm-host: $k otlinVersion "
69
48
70
49
annotationProcessor ' org.openjdk.jmh:jmh-generator-annprocess:1.20'
71
50
}
@@ -86,11 +65,6 @@ tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
86
65
}
87
66
}
88
67
89
- task copyKotlinJVMLib (type : Sync ) {
90
- from configurations. kotlinJVMLib
91
- into file(' lib-kotlin' )
92
- }
93
-
94
68
task copyPropertiesToTestWorkspace (type : Copy ) {
95
69
from " $rootDir /gradle.properties"
96
70
into file(' src/test/resources/additionalWorkspace' )
@@ -149,6 +123,5 @@ distZip {
149
123
archiveFileName = " ${ project.name} .zip"
150
124
}
151
125
152
- compileKotlin. dependsOn copyKotlinJVMLib
153
126
installDist. finalizedBy fixFilePermissions
154
127
build. finalizedBy installDist
0 commit comments