我在 GitHub OmegaIntentBuilder上有一个项目。另外,我在 jitpack.io 上从这个项目创建了库
dependencies {
compile 'com.github.Omega-R:OmegaIntentBuilder:0.0.5'
}
Run Code Online (Sandbox Code Playgroud)
该库有效,我可以毫无问题地导入它。但是现在我已经创建了两个带有代码生成功能的 java 子模块(“注释”、“处理器”)。
compile project(':annotations')
annotationProcessor project(':processor')
Run Code Online (Sandbox Code Playgroud)
如何将这些子模块导入 jitpack ?我的意思是我想像这样使用它
compile 'com.github.Omega-R:OmegaIntentBuilder.annotations:0.0.5'
annotationProcessor 'com.github.Omega-R:OmegaIntentBuilder.processor:0.0.5'
Run Code Online (Sandbox Code Playgroud)
我怎么能这样做?