一些 source set 的例子

2018-07-01 17:10 更新

加入含有类文件的 sorce set 的 JAR:

例22.8.为 source set 组装 JAR

build.gradle

task intTestJar(type: Jar) {
    from sourceSets.intTest.output
}

为 source set 生成 javadoc:

例22.9.为 source set 生成 javadoc

build.gradle

task intTestJavadoc(type: Javadoc) {
    source sourceSets.intTest.allJava
}

为 source set 添加一个测试套件运行测试:

例22.8.source set 运行测试

build.gradle

task intTest(type: Test) {
    testClassesDir = sourceSets.intTest.output.classesDir
    classpath = sourceSets.intTest.runtimeClasspath
}


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号