Skip to content

Commit 12ec771

Browse files
committed
Clean up dependencies and use bintray repo for Kotlin plugin
1 parent 8470cba commit 12ec771

File tree

6 files changed

+22
-49
lines changed

6 files changed

+22
-49
lines changed

build.gradle

+5-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@ plugins {
22
id 'org.jetbrains.kotlin.jvm' version "$kotlinVersion"
33
}
44

5-
repositories {
6-
mavenCentral()
5+
allprojects {
6+
repositories {
7+
mavenCentral()
8+
maven { url 'https://cache-redirector.jetbrains.com/kotlin.bintray.com/kotlin-plugin' }
9+
}
710
}
811

912
configure(subprojects.findAll { it.name != 'grammars' }) {

gradle.properties

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,2 @@
11
projectVersion=0.7.0
2-
teamCityUrl=https://teamcity.jetbrains.com
3-
teamCityUsername=guest
4-
teamCityPassword=guest
5-
kotlinVersion=1.4.0
6-
kotlinBuildType=Kotlin_1400_CompilerAllPlugins
7-
kotlinBuild=1.4.0
8-
kotlinPluginBuild=
2+
kotlinVersion=1.4.20-release-327

server/build.gradle

+8-35
Original file line numberDiff line numberDiff line change
@@ -22,50 +22,29 @@ startScripts {
2222
}
2323

2424
repositories {
25-
maven { url 'https://repo.gradle.org/gradle/libs-releases' }
2625
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
3926
}
4027

4128
dependencies {
42-
def kotlinPluginTC = "$kotlinBuildType:$kotlinBuild:kotlin-plugin-${kotlinPluginBuild}.zip!/Kotlin"
43-
4429
implementation project(':shared')
4530
implementation 'org.eclipse.lsp4j:org.eclipse.lsp4j:0.7.0'
4631
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"
5238
implementation 'org.jetbrains:fernflower:1.0'
5339
implementation 'com.beust:jcommander:1.78'
5440

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-
6241
testImplementation 'org.hamcrest:hamcrest-all:1.3'
6342
testImplementation 'junit:junit:4.11'
6443
testImplementation 'org.openjdk.jmh:jmh-core:1.20'
6544

6645
// 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:$kotlinVersion"
47+
testCompileOnly "org.jetbrains.kotlin:kotlin-scripting-jvm-host:$kotlinVersion"
6948

7049
annotationProcessor 'org.openjdk.jmh:jmh-generator-annprocess:1.20'
7150
}
@@ -86,11 +65,6 @@ tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
8665
}
8766
}
8867

89-
task copyKotlinJVMLib(type: Sync) {
90-
from configurations.kotlinJVMLib
91-
into file('lib-kotlin')
92-
}
93-
9468
task copyPropertiesToTestWorkspace(type: Copy) {
9569
from "$rootDir/gradle.properties"
9670
into file('src/test/resources/additionalWorkspace')
@@ -149,6 +123,5 @@ distZip {
149123
archiveFileName = "${project.name}.zip"
150124
}
151125

152-
compileKotlin.dependsOn copyKotlinJVMLib
153126
installDist.finalizedBy fixFilePermissions
154127
build.finalizedBy installDist

server/src/main/kotlin/org/javacs/kt/formatting/Formatter.kt

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package org.javacs.kt.formatting
22

3+
// import com.intellij.formatting.FormatterImpl
34
import org.eclipse.lsp4j.FormattingOptions
45

56
fun formatKotlinCode(

settings.gradle

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
pluginManagement {
2+
repositories {
3+
gradlePluginPortal()
4+
maven { url 'https://cache-redirector.jetbrains.com/kotlin.bintray.com/kotlin-plugin' }
5+
}
6+
}
7+
18
rootProject.name = 'kotlin-language-server'
29

310
include(

shared/build.gradle

-5
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@ version = projectVersion
88
sourceCompatibility = 1.8
99
targetCompatibility = 1.8
1010

11-
repositories {
12-
maven { url 'https://repo.gradle.org/gradle/libs-releases' }
13-
mavenCentral()
14-
}
15-
1611
dependencies {
1712
implementation 'org.jetbrains.kotlin:kotlin-stdlib'
1813
testImplementation 'org.hamcrest:hamcrest-all:1.3'

0 commit comments

Comments
 (0)