We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a41632 commit e1d8c4aCopy full SHA for e1d8c4a
build.gradle
@@ -712,9 +712,11 @@ configure(rootProject) {
712
}
713
from("$buildDir/docs") {
714
include 'javadoc/**'
715
- filter { line ->
716
- line.startsWith("<head>") ? line.replace("<head>", "<head><link rel=\"icon\" type=\"image/png\" href=\"http://junit.org/junit5/assets/img/junit5-logo.png\">") :
717
- line
+ filesMatching("*.html") {
+ filter { line ->
+ line.startsWith("<head>") ? line.replace("<head>", "<head><link rel=\"icon\" type=\"image/png\" href=\"http://junit.org/junit5/assets/img/junit5-logo.png\">") :
718
+ line
719
+ }
720
721
722
into "${docsDir}/${docsVersion}"
0 commit comments