Skip to content

Commit

Permalink
Declare explicit task dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
smillst committed Mar 2, 2023
1 parent 85f483a commit 8bee065
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion framework/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,10 @@ task allSourcesJar(type: Jar, group: 'Build') {

task allJavadocJar(type: Jar, group: 'Build') {
description 'Creates javadoc jar include Javadoc for all of the framework'
dependsOn rootProject.tasks.allJavadoc
dependsOn (project(':framework').tasks.javadoc,
project(':dataflow').tasks.javadoc,
project(':javacutil').tasks.javadoc)

duplicatesStrategy = DuplicatesStrategy.EXCLUDE
destinationDirectory = file("${projectDir}/dist")
archiveFileName = 'framework-javadoc.jar'
Expand Down

0 comments on commit 8bee065

Please sign in to comment.