-
-
Notifications
You must be signed in to change notification settings - Fork 33
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
Use modern intellij-platform-plugin-template #384
Conversation
// Kotlin support | ||
id("org.jetbrains.kotlin.jvm") version "1.5.10" | ||
// gradle-intellij-plugin - read more: https://github.com/JetBrains/gradle-intellij-plugin | ||
id("org.jetbrains.intellij") version "1.0" |
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.
I haven't upgraded it here to the latest version yet but it's still an upgrade to v1.0.
And there are some deprecations in v1.1.4 which I wanna address first.
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.
@stukalin any pointers on what the next steps are?
- update the plugin to the latest version
- update the IntelliJ version
- release the plugin
like that? 😅
Thanks! I'm currently on vacation but I'll have a look once I'm back next week. |
f6f527f
to
72852f6
Compare
I've rebased and slightly adjusted it. Thanks a lot for this!! :) |
Correct! Now it's my turn to be on holidays. Will push the next pr on Fri.
ср, 18 авг. 2021 г., 14:35 Tobias Bieniek ***@***.***>:
… ***@***.**** commented on this pull request.
------------------------------
In build.gradle.kts
<#384 (comment)>
:
> @@ -0,0 +1,62 @@
+import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
+
+fun properties(key: String) = project.findProperty(key).toString()
+
+plugins {
+ // Java support
+ id("java")
+ // Kotlin support
+ id("org.jetbrains.kotlin.jvm") version "1.5.10"
+ // gradle-intellij-plugin - read more: https://github.com/JetBrains/gradle-intellij-plugin
+ id("org.jetbrains.intellij") version "1.0"
@stukalin <https://github.com/stukalin> any pointers on what the next
steps are?
- update the plugin to the latest version
- update the IntelliJ version
- release the plugin
like that? 😅
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#384 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACLIBRPPD6RKG3KRDDFSKQTT5OLHVANCNFSM5CC5GYIQ>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&utm_campaign=notification-email>
.
|
awesome, thanks
enjoy :) |
I tried to bump the plugin version to 2021.2 and it wasn't straightforward for me because I had to upgrade the
gradle-intellij-plugin
to the latest version due to the JetBrains/intellij-platform-gradle-plugin#674 and it required to upgrade gradle and this whole thing didn't work anyhow.So I ended up grabbing the latest intellij-platform-plugin-template and adjusting it so that it basically has the same settings as we used to have.
The IDE version bump PR comes after this one is accepted