Skip to content

Commit

Permalink
Don’t disallow javadoc generation in subprojects.
Browse files Browse the repository at this point in the history
Even though these aren’t used in Glide’s javadoc, they are used in 
creating the javadoc jars uploaded to maven.

Fixes #1972.
  • Loading branch information
sjudd committed Jun 16, 2017
1 parent ee8a8ed commit bfe1442
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,6 @@ subprojects { project ->
options.compilerArgs << '-Xlint:unchecked' << '-Xlint:deprecation'
}
}

// We generate a combined javadoc, no need to create javadocs for each library independently.
if (!project.name.equals('glide')) {
tasks.withType(Javadoc).all { enabled = false }
}
}

task wrapper(type: Wrapper) {
Expand Down

0 comments on commit bfe1442

Please sign in to comment.