File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
src/main/kotlin/com/github/biomejs/intellijbiome/settings Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ version = providers.gradleProperty("pluginVersion").get()
13
13
14
14
// Set the JVM language level used to build the project.
15
15
kotlin {
16
- jvmToolchain(17 )
16
+ jvmToolchain(21 )
17
17
}
18
18
19
19
// Configure project's dependencies
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ pluginUntilBuild = 243.*
11
11
12
12
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
13
13
platformType = WS
14
- platformVersion = 2024.1.1
14
+ platformVersion = 2024.3
15
15
16
16
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
17
17
# Example: platformPlugins = com.jetbrains.php:203.4449.22, org.intellij.scala:2023.3.27@EAP
Original file line number Diff line number Diff line change 3
3
junit = " 4.13.2"
4
4
5
5
# plugins
6
- intelliJPlatform = " 2.0.1 "
6
+ intelliJPlatform = " 2.1.0 "
7
7
kotlin = " 1.9.25"
8
8
9
9
[libraries ]
Original file line number Diff line number Diff line change @@ -117,9 +117,9 @@ class BiomeConfigurable(internal val project: Project) :
117
117
118
118
row(BiomeBundle .message(" biome.config.path.label" )) {
119
119
textFieldWithBrowseButton(
120
- BiomeBundle .message(" biome.config.path.label" ),
121
- project,
122
120
FileChooserDescriptorFactory .createSingleFileOrFolderDescriptor()
121
+ .withTitle(BiomeBundle .message(" biome.config.path.label" )),
122
+ project,
123
123
) { fileChosen(it) }
124
124
.bindText(settings::configPath)
125
125
.validationOnInput(validateConfigDir())
You can’t perform that action at this time.
0 commit comments