admin管理员组文章数量:1344933
I'm working on a Kotlin Multiplatform Mobile (KMM) project where I publish shared modules to a local or remote Maven repository. My module targets:
- android
- jvm
- iosX64
- iosArm64
- iosSimulatorArm64
Locally, running the following command on my MacBook:
./gradlew publishToMavenLocal
generates the correct output structure in .m2/repository/, including the iOS-specific folders:
network-iosarm64/
network-iosx64/
network-iossimulatorarm64/
However, when I run this on Bamboo CI, using the same Gradle project and the same command:
./gradlew publishToMavenLocal -Dmaven.repo.local=$SCRIPT_DIR/repository
...I only see Android and JVM outputs, like:
network/
network-android/
But no iOS artifacts are generated at all.
本文标签:
版权声明:本文标题:maven - Kotlin Multiplatform publishToMavenLocal does not include iOS targets on CI (but works locally) - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743749462a2532375.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论