我正在尝试将基于 gradle 的 android 构建插件转移到 maven 构建系统。到目前为止,除了 android 部分,我是成功的。
看来我缺少包中的类com.android.build.api.transform
。虽然我使用了这段代码
<dependency>
<groupId>com.android.tools.build</groupId>
<artifactId>gradle</artifactId>
<version>2.2.0</version>
<type>jar</type>
</dependency>
这应该提供(而不是间接地)所需的类/包,这似乎不起作用。
我还添加了
<repositories>
<repository>
<id>android</id>
<name>android</name>
<url>https://plugins.gradle.org/m2/</url>
</repository>
</repositories>
以防万一,没有运气。由于缺少类,该项目仍然无法编译。
知道我缺少什么吗?我对 gradle/maven 场景非常陌生,但我仍然觉得这些工具不在我的水域。
作为参考,这里是该工件的 javadoc 的链接。
谢谢你的帮助