chore: Update dependencies
This commit is contained in:
parent
56c373560c
commit
0dab1eba74
2 changed files with 8 additions and 38 deletions
|
@ -12,10 +12,9 @@ fun environment(key: String) = providers.environmentVariable(key)
|
|||
plugins {
|
||||
id("java") // Java support
|
||||
id("java-library")
|
||||
alias(libs.plugins.gradleIntelliJPlugin) // Gradle IntelliJ Plugin
|
||||
alias(libs.plugins.changelog) // Gradle Changelog Plugin
|
||||
alias(libs.plugins.grammarkit)
|
||||
id("org.jetbrains.kotlin.jvm") version "1.9.22"
|
||||
id("org.jetbrains.intellij") version("1.17.0")
|
||||
id("org.jetbrains.changelog") version("2.2.0")
|
||||
id("org.jetbrains.grammarkit") version("2022.3.2.1")
|
||||
}
|
||||
|
||||
val grammarKitGenDir = "build/generated/sources/grammarkit/java"
|
||||
|
@ -48,7 +47,6 @@ allprojects {
|
|||
apply {
|
||||
plugin("org.jetbrains.grammarkit")
|
||||
plugin("org.jetbrains.intellij")
|
||||
plugin("org.jetbrains.kotlin.jvm")
|
||||
}
|
||||
repositories {
|
||||
mavenCentral()
|
||||
|
@ -56,10 +54,10 @@ allprojects {
|
|||
maven("https://cache-redirector.jetbrains.com/intellij-dependencies")
|
||||
}
|
||||
dependencies {
|
||||
compileOnly("org.jetbrains:annotations:24.0.1")
|
||||
compileOnly("org.jetbrains:annotations:24.1.0")
|
||||
|
||||
compileOnly("org.projectlombok:lombok:1.18.28")
|
||||
annotationProcessor("org.projectlombok:lombok:1.18.28")
|
||||
compileOnly("org.projectlombok:lombok:1.18.30")
|
||||
annotationProcessor("org.projectlombok:lombok:1.18.30")
|
||||
}
|
||||
intellij {
|
||||
version = baseVersion
|
||||
|
@ -169,9 +167,9 @@ project(":lsp") {
|
|||
plugin("java-library")
|
||||
}
|
||||
dependencies {
|
||||
api("org.eclipse.lsp4j:org.eclipse.lsp4j:0.21.0")
|
||||
api("org.eclipse.lsp4j:org.eclipse.lsp4j:0.21.2")
|
||||
implementation("com.vladsch.flexmark:flexmark:0.64.8")
|
||||
api("org.apache.commons:commons-lang3:3.13.0")
|
||||
api("org.apache.commons:commons-lang3:3.14.0")
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,28 +0,0 @@
|
|||
[versions]
|
||||
# libraries
|
||||
annotations = "24.0.1"
|
||||
lsp4j = "0.21.0"
|
||||
flexmark = "0.64.8"
|
||||
commonsLang = "3.13.0"
|
||||
|
||||
# plugins
|
||||
kotlin = "1.9.0"
|
||||
changelog = "2.1.2"
|
||||
gradleIntelliJPlugin = "1.16.1"
|
||||
qodana = "0.1.13"
|
||||
kover = "0.7.2"
|
||||
grammarkit = "2022.3.1"
|
||||
|
||||
[libraries]
|
||||
annotations = { group = "org.jetbrains", name = "annotations", version.ref = "annotations" }
|
||||
lsp4j = { group = "org.eclipse.lsp4j", name = "org.eclipse.lsp4j", version.ref = "lsp4j" }
|
||||
flexmark = { group = "com.vladsch.flexmark", name = "flexmark", version.ref = "flexmark" }
|
||||
commonsLang = { group = "org.apache.commons", name = "commons-lang3", version.ref = "commonsLang" }
|
||||
|
||||
[plugins]
|
||||
changelog = { id = "org.jetbrains.changelog", version.ref = "changelog" }
|
||||
gradleIntelliJPlugin = { id = "org.jetbrains.intellij", version.ref = "gradleIntelliJPlugin" }
|
||||
kotlin = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
|
||||
kover = { id = "org.jetbrains.kotlinx.kover", version.ref = "kover" }
|
||||
qodana = { id = "org.jetbrains.qodana", version.ref = "qodana" }
|
||||
grammarkit = { id = "org.jetbrains.grammarkit", version.ref = "grammarkit" }
|
Loading…
Add table
Reference in a new issue