如何在Eclipse中为Gradle项目的本地依赖指定源附件,Javadoc位置和本机库位置?

时间:2016-07-26 19:49:08

标签: eclipse git gradle gradle-eclipse buildship

使用Eclipse IDE for Java Developers(Neon)以及默认的Gradle插件(Buildship?)。

Gradle Git项目是使用Eclipse IDE创建的。本地JAR存储在workspace/ProjectName/lib/nameOfJAR.jar目录中。它使用以下 build.gradle 配置作为依赖项添加到此项目中。

...

repositories {
    // Use 'jcenter' for resolving your dependencies.
    // You can declare any Maven/Ivy/file repository here.
    jcenter()

    flatDir {
        dirs 'lib/'
    }

}

dependencies {
    // The production code uses the SLF4J logging API at compile time
    compile 'org.slf4j:slf4j-api:1.7.21'

    compile name: 'nameOfJAR'

    // Declare the dependency for your favourite test framework you want to use in your tests.
    // TestNG is also supported by the Gradle Test task. Just change the
    // testCompile dependency to testCompile 'org.testng:testng:6.8.1' and add
    // 'test.useTestNG()' to your build script.
    testCompile 'junit:junit:4.12'
}

然后使用Project Explorer > Project A > Gradle > Refresh Gradle Project更新Eclipse GUI,通过Project Explorer > Project A > Build Path > Configure Build Path > Libraries > Project and External Dependencies > [Name of JAR]显示这个新的本地依赖项。

但是,在展开此部分时,源附件,Javadoc位置和本机库位置显示为不可修改。可以从Gradle配置文件中设置这些吗?

如何通过Eclipse和Gradle设置它们?

1 个答案:

答案 0 :(得分:0)

您可以将nameOfJar-sources.jar文件放在同一目录中的实际库旁边。 Gradle会将其用作源附件。我认为同样适用于javadocs,即nameOfJar-javadoc.jar将被选中。我不知道如何处理本机库。

这可能在Gradle文档中的某处描述过,但我不知道在哪里可以找到它们。