File tree Expand file tree Collapse file tree 4 files changed +14
-5
lines changed Expand file tree Collapse file tree 4 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ startScripts {
17
17
}
18
18
19
19
repositories {
20
- mavenCentral()
21
20
maven { url ' https://jitpack.io' }
22
21
}
23
22
@@ -26,7 +25,7 @@ dependencies {
26
25
implementation ' org.eclipse.lsp4j:org.eclipse.lsp4j.debug:0.6.0'
27
26
implementation ' org.jetbrains.kotlin:kotlin-stdlib'
28
27
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 '
30
29
// The Java Debug Interface classes (com.sun.jdi.*)
31
30
implementation files(" ${ System.properties['java.home']} /../lib/tools.jar" )
32
31
testImplementation ' junit:junit:4.12'
Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ plugins {
2
2
id ' org.jetbrains.kotlin.jvm' version " $kotlinVersion "
3
3
}
4
4
5
- repositories {
6
- mavenCentral()
5
+ allprojects {
6
+ repositories {
7
+ mavenCentral()
8
+ maven { url ' https://cache-redirector.jetbrains.com/kotlin.bintray.com/kotlin-plugin' }
9
+ }
7
10
}
Original file line number Diff line number Diff line change 1
1
projectVersion =0.4.2
2
- kotlinVersion =1.3.40
2
+ kotlinVersion =1.4.20-release-327
Original file line number Diff line number Diff line change
1
+ pluginManagement {
2
+ repositories {
3
+ gradlePluginPortal()
4
+ maven { url ' https://cache-redirector.jetbrains.com/kotlin.bintray.com/kotlin-plugin' }
5
+ }
6
+ }
7
+
1
8
rootProject. name = ' kotlin-debug-adapter'
2
9
3
10
include ' adapter'
You can’t perform that action at this time.
0 commit comments