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 9c2cc45 commit ece6a47Copy full SHA for ece6a47
buildSrc/src/main/java/com/google/firebase/gradle/plugins/Dokka.java
@@ -62,6 +62,10 @@ static void configure(
62
.attribute(
63
BuildTypeAttr.ATTRIBUTE, project.getObjects().named(BuildTypeAttr.class, "release"));
64
}
65
+ Configuration runtimeOnly = project.getConfigurations().findByName("runtimeOnly");
66
+ if(runtimeOnly != null) {
67
+ javadocClasspath.extendsFrom(runtimeOnly);
68
+ }
69
70
project.afterEvaluate(
71
p -> {
0 commit comments