File tree Expand file tree Collapse file tree 3 files changed +12
-6
lines changed Expand file tree Collapse file tree 3 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -13,16 +13,16 @@ startScripts {
13
13
applicationName = " kotlin-debug-adapter"
14
14
}
15
15
16
- repositories {
17
- maven { url ' https://jitpack.io' }
18
- }
19
-
20
16
dependencies {
21
17
// The JSON-RPC and Debug Adapter Protocol implementations
22
18
implementation ' org.eclipse.lsp4j:org.eclipse.lsp4j.debug:0.10.0'
23
19
implementation ' org.jetbrains.kotlin:kotlin-stdlib'
24
20
implementation ' org.jetbrains.kotlin:kotlin-reflect'
25
- implementation ' com.github.fwcd.kotlin-language-server:shared:c7e08424e9f5237c594c38ab51af475e40d256f2'
21
+ implementation(' kotlin-language-server:shared' ) {
22
+ version {
23
+ branch = ' main'
24
+ }
25
+ }
26
26
testImplementation ' junit:junit:4.12'
27
27
testImplementation ' org.hamcrest:hamcrest-all:1.3'
28
28
}
Original file line number Diff line number Diff line change 1
1
plugins {
2
- id ' org.jetbrains.kotlin.jvm' version " $kotlinVersion "
2
+ id ' org.jetbrains.kotlin.jvm' version " $kotlinVersion "
3
3
}
4
4
5
5
allprojects {
Original file line number Diff line number Diff line change @@ -8,3 +8,9 @@ pluginManagement {
8
8
rootProject. name = ' kotlin-debug-adapter'
9
9
10
10
include ' adapter'
11
+
12
+ sourceControl {
13
+ gitRepository(' https://github.com/fwcd/kotlin-language-server.git' ) {
14
+ producesModule(' kotlin-language-server:shared' )
15
+ }
16
+ }
You can’t perform that action at this time.
0 commit comments