Skip to content

Commit

Permalink
refactor: reorganizes logic and adds support for completion
Browse files Browse the repository at this point in the history
Signed-off-by: Lorenzo Addazi <[email protected]>
  • Loading branch information
loradd committed Mar 27, 2024
1 parent 981138f commit 91f5b1b
Show file tree
Hide file tree
Showing 18 changed files with 759 additions and 599 deletions.
10 changes: 9 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,18 @@ allprojects {
group = "com.strumenta.kolasu.languageserver"
}

subprojects {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}

release {
buildTasks.set(listOf(":kolasu-languageserver-library:publish", ":kolasu-languageserver-testing:publish", ":kolasu-languageserver-plugin:publishPlugins"))
git {
requireBranch.set("")
pushToRemote.set("origin")
}
}
}
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version=1.0.5-SNAPSHOT
version=1.0.5-lsp-experiment-46
kotlinVersion=1.8.22
kolasuVersion=1.5.45
lsp4jVersion=0.21.1
luceneVersion=9.8.0
junitVersion=5.7.1
junitVersion=5.7.1
7 changes: 2 additions & 5 deletions library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,12 @@ plugins {
signing
}

repositories {
mavenCentral()
}

dependencies {
implementation(libs.kotlin.reflect)
implementation(libs.kolasu.core)
implementation(libs.kolasu.semantics)
implementation(libs.lsp4j)
implementation(libs.lucene)
implementation(libs.antlr4.c3)
}

java {
Expand Down
Loading

0 comments on commit 91f5b1b

Please sign in to comment.