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 9357793 commit 6261635Copy full SHA for 6261635
buildSrc/src/main/kotlin/datadog/gradle/plugin/csi/CallSiteInstrumentationPlugin.kt
@@ -187,6 +187,10 @@ abstract class CallSiteInstrumentationPlugin : Plugin<Project>{
187
188
// make task depends on compile
189
dependsOn(mainCompileTask)
190
+ // Workaround for instrument plugin modifying compile tasks
191
+ if (project.pluginManager.hasPlugin("instrument")) {
192
+ dependsOn("instrumentJava")
193
+ }
194
}
195
196
// make all sourcesets' class tasks depend on call site generator
0 commit comments