Ethan Davidson
12/19/2021, 4:45 PMdimsuz
12/19/2021, 7:22 PMkotlin-result
seems like a small library (just as mine is), uses `maven-publish`: https://github.com/michaelbull/kotlin-result
2. arrow-kt
big size library, uses custom plugin in a separate project
3. wire
medium size library, uses `vanniktech/gradle-maven-publish-plugin`: https://github.com/square/wire
4. okio
medium size library, uses vanniktech
plugin too: https://github.com/square/okio
If you'll get as stuck as I am, maybe one of those could be used for poking inside 🙂
My plan is:
• Try to do what kotlin-result
does
• If not successful, leave all hope for maven-publish
and check that other pluginmbonnin
12/19/2021, 7:39 PMgroup
and artifactId
there: https://github.com/ethanmdavidson/Keval/blob/00765c3b5e3d12c0cb6e59155220c03752e964b5/build.gradle.kts#L86 (left a comment in the PR)Ethan Davidson
12/19/2021, 8:21 PM