-
Notifications
You must be signed in to change notification settings - Fork 0
Introduce Java library Stream plugin #3
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
Conversation
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.
Pull Request Overview
This PR adds support for Java/Kotlin JVM library modules by introducing a new convention plugin. The changes refactor the existing Kotlin configuration logic to be reusable across Android and pure JVM projects.
- Introduces
JavaLibraryConventionPluginfor non-Android Java/Kotlin library projects - Refactors Kotlin compiler configuration into a shared
configureKotlin()function - Extracts Java configuration into a reusable
configureJava()function
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| plugin/src/main/kotlin/io/getstream/android/StreamConventionPlugins.kt | Adds JavaLibraryConventionPlugin class and refactors configuration functions to support both Android and pure JVM projects |
| plugin/build.gradle.kts | Registers the new javaLibrary convention plugin with Gradle plugin portal |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
plugin/src/main/kotlin/io/getstream/android/StreamConventionPlugins.kt
Outdated
Show resolved
Hide resolved
3a190b8 to
b8f8875
Compare
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.
Pull Request Overview
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
We also need a plugin for
java-librarymodules as we use those in some cases (e.g. in Chat).