-
Notifications
You must be signed in to change notification settings - Fork 7
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
Minor Gradle tweaks #119
Minor Gradle tweaks #119
Conversation
Kotlin sources in idea-plugin module can't be viewed in IDEA as we removed its dependency explicitly. Now we `compileOnly` stdlib for all modules that applied Kotlin plugin, no need to worry small things like this.
Will squash this PR. |
idea-plugin/build.gradle.kts
Outdated
enableStrongSkippingMode = true | ||
stabilityConfigurationFile = layout.projectDirectory.file("stability_config.conf") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we share this config and enable strong-skip for App and Plugin?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will be removed after release kotlin 2.0.20
https://kotlinlang.org/docs/whatsnew-eap.html#strongskipping-mode-enabled-by-default
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice, will remove it then.
Kotlin sources in idea-plugin module can't be viewed in IDEA as we removed its dependency explicitly. Now we
compileOnly
stdlib for all modules that applied Kotlin plugin, no need to worry small things like this.