elharo commented on a change in pull request #27: MJAVADOC-617 Normalize module path so that '..' in the path are resolved URL: https://github.com/apache/maven-javadoc-plugin/pull/27#discussion_r400289418
########## File path: src/test/java/org/apache/maven/plugins/javadoc/AggregatorJavadocReportTest.java ########## @@ -257,4 +249,30 @@ public void testAggregateJavadocResources() assertTrue( overview.contains( "<img src=\"doc-files/maven-feather.png\" alt=\"Maven\">" ) ); assertTrue( new File( apidocs, "resources/test/doc-files/maven-feather.png" ).exists() ); } + + public void testAggregateWithModulsNotInSubFolders() throws Exception + { + File testPom = new File( unit, "aggregate-modules-not-in-subfolders-test/all/pom.xml"); + JavadocReport mojo = lookupMojo( testPom ); + mojo.execute(); + + File apidocs = new File( getBasedir(), "target/test/unit/aggregate-modules-not-in-subfolders-test/target/site/apidocs" ); + assertTrue(apidocs.exists()); + assertTrue( getOverviewSummary(apidocs).exists() ); + } + + private File getOverviewSummary(File apidocs) + { + File overviewSummary; + if ( JavaVersion.JAVA_SPECIFICATION_VERSION.isBefore( "11" ) ) + { + overviewSummary = new File( apidocs, "overview-summary.html" ); Review comment: return new File... is shorter and avoids an uninitialized variable. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services