I have a project on GitHub OmegaIntentBuilder. Also, I created library from this project on jitpack.io
dependencies {
compile 'com.github.Omega-R:OmegaIntentBuilder:0.0.5'
}
The library works, I could import it without any problems. But now I've created two java submodules ("annotations", "processor") with code generation.
compile project(':annotations')
annotationProcessor project(':processor')
How could I import these submodules to jitpack ?? I mean I want to use it like this
compile 'com.github.Omega-R:OmegaIntentBuilder.annotations:0.0.5'
annotationProcessor 'com.github.Omega-R:OmegaIntentBuilder.processor:0.0.5'
How could I do this?