本文介绍了如何使用 Gradle 拉取 Maven 测试罐?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在 Maven 中,我可以为依赖解析指定一个类型".我正在尝试拉下 tests.jar
.我如何使用 Gradle 做到这一点?
In maven I can specify a "type" for dependency resolution. I am trying to pull down a tests.jar
. How can I do this using Gradle?
我尝试过使用下面的 Gradle Dependency,但这并没有拉下 test.jar
.
I have tried using the Gradle Dependency below, but this does not pull down test.jar
.
testCompile(group: 'org.apache.hbase', name: 'hbase', version: '0.94.2', type: 'test-jar')
Maven 依赖:
<dependency>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase</artifactId>
<version>0.94.2</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
详情: Gradle 1.7
details: Gradle 1.7
我正在尝试从 Maven 中心
推荐答案
Gradle 没有 Maven 的 <type>
的直接等价物,而是 classifier: 'tests'
code> 应该在这里工作(而不是 type: ...
).
Gradle doesn't have a direct equivalent of Maven's <type>
, but classifier: 'tests'
should work here (instead of type: ...
).
这篇关于如何使用 Gradle 拉取 Maven 测试罐?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!