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 7232c82 commit 483dd86Copy full SHA for 483dd86
buildSrc/src/main/kotlin/datadog/gradle/plugin/config/SupportedConfigPlugin.kt
@@ -23,5 +23,10 @@ class SupportedConfigPlugin : Plugin<Project> {
23
sourceset.configure {
24
java.srcDir(generateTask)
25
}
26
+
27
+ // Make javadoc depend on the generated configurations
28
+ targetProject.tasks.named("javadoc") {
29
+ dependsOn(generateTask)
30
+ }
31
32
utils/config-utils/build.gradle.kts
@@ -56,7 +56,3 @@ dependencies {
56
testImplementation(project(":utils:test-utils"))
57
testImplementation("org.snakeyaml:snakeyaml-engine:2.9")
58
59
-
60
-tasks.named("javadoc") {
61
- dependsOn("generateSupportedConfigurations")
62
-}
0 commit comments