Skip to content

Commit bfe1442

Browse files
committed
Don’t disallow javadoc generation in subprojects.
Even though these aren’t used in Glide’s javadoc, they are used in creating the javadoc jars uploaded to maven. Fixes #1972.
1 parent ee8a8ed commit bfe1442

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

build.gradle

-5
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,6 @@ subprojects { project ->
6767
options.compilerArgs << '-Xlint:unchecked' << '-Xlint:deprecation'
6868
}
6969
}
70-
71-
// We generate a combined javadoc, no need to create javadocs for each library independently.
72-
if (!project.name.equals('glide')) {
73-
tasks.withType(Javadoc).all { enabled = false }
74-
}
7570
}
7671

7772
task wrapper(type: Wrapper) {

0 commit comments

Comments
 (0)