File tree Expand file tree Collapse file tree 1 file changed +5
-12
lines changed
buildSrc/src/main/java/com/google/firebase/gradle/plugins Expand file tree Collapse file tree 1 file changed +5
-12
lines changed Original file line number Diff line number Diff line change @@ -338,21 +338,14 @@ abstract class DackkaPlugin : Plugin<Project> {
338
338
outputDirectory : Provider <File >
339
339
) =
340
340
project.tasks.register<Copy >(" copyJavaDocToCommonDirectory" ) {
341
- /* *
342
- * This is not currently cache compliant. The need for this property is temporary while we
343
- * test it alongside the current javaDoc task. Since it's such a temporary behavior, losing
344
- * cache compliance is fine for now.
345
- */
346
- if (project.rootProject.findProperty(" dackkaJavadoc" ) == " true" ) {
347
- mustRunAfter(" firesiteTransform" )
341
+ mustRunAfter(" firesiteTransform" )
348
342
349
- val outputFolder = project.rootProject.fileFromBuildDir(" firebase-kotlindoc/android " )
350
- val javaFolder = project.childFile(outputDirectory, " android" )
343
+ val outputFolder = project.rootProject.fileFromBuildDir(" firebase-kotlindoc" )
344
+ val javaFolder = project.childFile(outputDirectory, " android" )
351
345
352
- fromDirectory(javaFolder)
346
+ fromDirectory(javaFolder)
353
347
354
- into(outputFolder)
355
- }
348
+ into(outputFolder)
356
349
}
357
350
358
351
// TODO(b/246593212): Migrate doc files to single directory
You can’t perform that action at this time.
0 commit comments