Skip to content

Improve build development cycle #108

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 2, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ plugins {
group = properties("pluginGroup")
version = properties("pluginVersion")

val ktorVersion = properties("ktorVersion")
dependencies {
implementation("com.squareup.retrofit2:retrofit:2.9.0")
// define a BOM and its version
Expand Down Expand Up @@ -98,7 +97,8 @@ tasks {
compilerVersion.set(properties("instrumentationCompiler"))
}

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

runIde {
autoReloadPlugins.set(true)
}

// Configure UI tests plugin
// Read more: https://github.com/JetBrains/intellij-ui-test-robot
runIdeForUiTests {
Expand Down