Skip to content

Commit

Permalink
Include missing source and javadocs for top level Chorus package
Browse files Browse the repository at this point in the history
  • Loading branch information
nickebbutt committed Jan 5, 2019
1 parent d7fb2ec commit 64d40d8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion interpreter/chorus/build.gradle
Expand Up @@ -52,10 +52,14 @@ processResources.dependsOn createChorusVersionResource

// Must be BELOW subprojects{}
task alljavadoc(type: Javadoc) {
source subprojects.collect { it.sourceSets.main.allJava }
def sourceCollect = subprojects.collect { it.sourceSets.main.allJava }
sourceCollect.add(sourceSets.main.allJava)
source sourceCollect

def collect = subprojects.collect { it.sourceSets.main.compileClasspath }
collect.add(sourceSets.main.compileClasspath)
classpath = files(collect)

destinationDir = file("${buildDir}/docs/javadoc")
}

Expand Down

0 comments on commit 64d40d8

Please sign in to comment.