We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3433d28 commit 2da0908Copy full SHA for 2da0908
build.gradle.kts
@@ -25,6 +25,11 @@ repositories {
25
// Dependencies are managed with Gradle version catalog - read more: https://docs.gradle.org/current/userguide/platforms.html#sub:version-catalog
26
dependencies {
27
// implementation(libs.annotations)
28
+ // We need kotlinx-serialization-json >= 1.7.0 to support allowComments, as
29
+ // devcontainer.json files often have comments and therefore use
30
+ // nonstandard JSON syntax. This dependency should be marked compileOnly
31
+ // once the minimum IDE version we support (pluginSinceBuild in
32
+ // gradle.properties) is at least 251, which includes version 1.7.2.
33
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0")
34
}
35
0 commit comments