Skip to content

Commit b489681

Browse files
committed
Update to Kotlin 1.4.20 and update shared module
1 parent 4ea71e5 commit b489681

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

adapter/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ startScripts {
1717
}
1818

1919
repositories {
20-
mavenCentral()
2120
maven { url 'https://jitpack.io' }
2221
}
2322

@@ -26,7 +25,7 @@ dependencies {
2625
implementation 'org.eclipse.lsp4j:org.eclipse.lsp4j.debug:0.6.0'
2726
implementation 'org.jetbrains.kotlin:kotlin-stdlib'
2827
implementation 'org.jetbrains.kotlin:kotlin-reflect'
29-
implementation 'com.github.fwcd.kotlin-language-server:shared:229c762a4d75304d21eba6d8e1231ed949247629'
28+
implementation 'com.github.fwcd.kotlin-language-server:shared:fb2c4f58aec6738ee2b66afb583ab51e2c424ebb'
3029
// The Java Debug Interface classes (com.sun.jdi.*)
3130
implementation files("${System.properties['java.home']}/../lib/tools.jar")
3231
testImplementation 'junit:junit:4.12'

build.gradle

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ 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
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
projectVersion=0.4.2
2-
kotlinVersion=1.3.40
2+
kotlinVersion=1.4.20-release-327

settings.gradle

Lines changed: 7 additions & 0 deletions
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-debug-adapter'
29

310
include 'adapter'

0 commit comments

Comments
 (0)