-
Notifications
You must be signed in to change notification settings - Fork 86
Migrates publishing to Maven Central Portal. #2476
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
…patible with Kotlin compiler 1.9.20.
📸 Snapshot Test648 unchanged
🛸 Powered by Emerge Tools |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2476 +/- ##
=======================================
Coverage 78.72% 78.72%
=======================================
Files 289 289
Lines 10519 10519
Branches 1509 1509
=======================================
Hits 8281 8281
Misses 1590 1590
Partials 648 648 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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.
Looks great! Thanks for doing this
**This is an automatic release.** ## RevenueCat SDK ### ✨ New Features * Add `managementURL` to `SubscriptionInfo` (#2468) via Cesar de la Vega (@vegaro) ### 🐞 Bugfixes * Use subscription's managementURL instead of CustomerInfo's in Customer Center (#2473) via Cesar de la Vega (@vegaro) * Issue when loading promotional offers when products are missing base plans (#2471) via Cesar de la Vega (@vegaro) * Purchases the right package when a purchase button is inside a package component (#2469) via JayShortway (@JayShortway) * fix potential infinite loop in paywalls (#2462) via Antonio Pallares (@ajpallares) ## RevenueCatUI SDK ### Customer Center #### ✨ New Features * Support multi purchases in Customer Center (#2431) via Cesar de la Vega (@vegaro) #### 🐞 Bugfixes * Use Material TopAppBar in Customer Center (#2459) via Cesar de la Vega (@vegaro) * Redo navigation in Customer Center (#2458) via Cesar de la Vega (@vegaro) ### 🔄 Other Changes * Migrates publishing to Maven Central Portal. (#2476) via JayShortway (@JayShortway) * Introduce the Compose compiler metrics option for the ui package (#2474) via Jaewoong Eum (@skydoves) * Update workflows/issue-notifications.yml@v2 (#2475) via Josh Holtz (@joshdholtz) * Configure Renovate (#2470) via RevenueCat Git Bot (@RCGitBot) * Add GitHub Issue Action Ack (#2467) via Josh Holtz (@joshdholtz) * [AUTOMATIC][Paywalls V2] Updates paywall-preview-resources submodule (#2448) via RevenueCat Git Bot (@RCGitBot) * Improve paywall error logs (#2461) via Toni Rico (@tonidero) * [EXTERNAL] Improve logger performance with message lambdas (#2456) via @landarskiy (#2460) via JayShortway (@JayShortway) * [Paywalls] Ignores `sheet.background` property in schema (#2451) via JayShortway (@JayShortway) Co-authored-by: revenuecat-ops <ops@revenuecat.com>
Description
Migrates publishing from OSSRH to Central Portal.
To publish to Central Portal, we need to update the
maven.publish
plugin. Doing so gives us the following error in the:bom
module:I tried to work around it by setting the
languageVersion
andapiVersion
to 1.8 (our previous Kotlin version), but that only works at the source level. Binaries compiled with 1.9 cannot be read by the 1.7 compiler (our current minimum version).As discussed on Slack, we're temporarily disabling publishing the
:bom
, until we either update our Kotlin version or migrate:bom
publishing to use a different plugin.