22.7.3.一些 source set 的例子

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

例22.8.为 source set 组装 JAR

build.gradle

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

为 source set 生成 javadoc:

例22.9.为 source set 生成 javadoc

build.gradle

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

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

例22.8.source set 运行测试

build.gradle

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