How to publish Android library multiple module on the same repository?
When i try to publish my android library with maven-publish plugin and
jitpack.io,
I must implement link as below,
Link: 'com.github.EkremYigitšersonal-android-library:1.0.0'
But I dont want to add all modules with single link. I want to split links as like below
'com.github.EkremYigit.RepositoryName:myLibrary:1.0.0'
'com.github.EkremYigit.RepositoryName:myLibrary2:1.0.0'
How to create "single repo with multiple module library" senario, is there any guideline ?
Project structure
<a...