本文介绍了如何使用Gradle 2.0下载jar的javadocs和源代码?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用Gradle 2.0。我应该在

添加 javadoc 或来源分类为依赖关系:

 依赖关系{
编译commons-codec:commons-codec:1.10:sources
compilecommons-codec:commons -codec:1.10:javadoc


I am using Gradle 2.0. What should I write in build.gradle so that the javadocs and sources are also downloaded along with the jars?

解决方案

Add the javadoc or sources classifies as dependencies:

dependencies {
    compile "commons-codec:commons-codec:1.10:sources"
    compile "commons-codec:commons-codec:1.10:javadoc"
}

这篇关于如何使用Gradle 2.0下载jar的javadocs和源代码?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-11 13:27