File tree 1 file changed +2
-6
lines changed
1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -481,19 +481,15 @@ task buildMetadata(type: JavaExec) {
481
481
inputs. files(" $MDG_JAVA_DEPENDENCIES " )
482
482
483
483
def classesDir = " $buildDir /intermediates/javac"
484
-
485
- println " Listing $buildDir /intermediates subfolders"
486
- new File (" $buildDir /intermediates" ). eachDir{ println it}
487
-
488
- assert file(classesDir). exists()
489
-
490
484
inputs. dir(classesDir)
491
485
492
486
outputs. files(" $METADATA_OUT_PATH /treeNodeStream.dat" , " $METADATA_OUT_PATH /treeStringsStream.dat" , " $METADATA_OUT_PATH /treeValueStream.dat" )
493
487
494
488
doFirst {
495
489
// get compiled classes to pass to metadata generator
496
490
// these need to be called after the classes have compiled
491
+ assert file(classesDir). exists()
492
+
497
493
def classesSubDirs = new File (classesDir). listFiles()
498
494
def selectedBuildType = project. ext. selectedBuildType
499
495
You can’t perform that action at this time.
0 commit comments