JetBrains / intellij-platform-plugin-template

Template repository for creating plugins for IntelliJ Platform
Apache License 2.0
3.05k stars 618 forks source link

build: update Gradle to `7.6` #335

Closed lukeribchester closed 1 year ago

lukeribchester commented 1 year ago

Description

Updated Gradle to version 7.6 by updating the wrapper:

gradle wrapper --gradle-version 7.6

Potential breaking changes

Upgrade to Kotlin 1.7.10

The embedded Kotlin has been updated to Kotlin 1.7.10.

Gradle doesn’t ship with the kotlin-gradle-plugin but the upgrade to 1.7.10 can bring the new version. For example when you use the kotlin-dsl plugin.

The kotlin-gradle-plugin version 1.7.10 changes the type hierarchy of the KotlinCompile task type. It doesn’t extend from AbstractCompile anymore. If you used to select Kotlin compilation tasks by AbstractCompile you need to change that to KotlinCompile.

Upgrading from 7.5 and earlier

References

codecov-commenter commented 1 year ago

Codecov Report

Base: 45.00% // Head: 45.00% // No change to project coverage :thumbsup:

Coverage data is based on head (b783c6a) compared to base (298b050). Patch has no changes to coverable lines.

Additional details and impacted files ```diff @@ Coverage Diff @@ ## next #335 +/- ## ======================================= Coverage 45.00% 45.00% ======================================= Files 4 4 Lines 20 20 Branches 3 3 ======================================= Hits 9 9 Misses 9 9 Partials 2 2 ``` Help us with your feedback. Take ten seconds to tell us [how you rate us](https://about.codecov.io/nps?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=JetBrains). Have a feature suggestion? [Share it here.](https://app.codecov.io/gh/feedback/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=JetBrains)

:umbrella: View full report at Codecov.
:loudspeaker: Do you have feedback about the report comment? Let us know in this issue.

hsz commented 1 year ago

Thanks, Luke!