Skip to content

Commit 7f86c36

Browse files
authored
Merge pull request coder#108 from coder/improve-build-run-test-loop
Improve build development cycle
2 parents e0e967a + a9f8aad commit 7f86c36

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

build.gradle.kts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ plugins {
2121
group = properties("pluginGroup")
2222
version = properties("pluginVersion")
2323

24-
val ktorVersion = properties("ktorVersion")
2524
dependencies {
2625
implementation("com.squareup.retrofit2:retrofit:2.9.0")
2726
// define a BOM and its version
@@ -98,7 +97,8 @@ tasks {
9897
compilerVersion.set(properties("instrumentationCompiler"))
9998
}
10099

101-
// TODO - this fails with linkage error, remove when it works
100+
// TODO - this fails with linkage error, but we don't need it now
101+
// because the plugin does not provide anything to search for in Preferences
102102
buildSearchableOptions {
103103
isEnabled = false
104104
}
@@ -129,6 +129,10 @@ tasks {
129129
})
130130
}
131131

132+
runIde {
133+
autoReloadPlugins.set(true)
134+
}
135+
132136
// Configure UI tests plugin
133137
// Read more: https://github.com/JetBrains/intellij-ui-test-robot
134138
runIdeForUiTests {

0 commit comments

Comments
 (0)