You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* This plugin creates and registers all affected test tasks.
@@ -125,6 +126,7 @@ class AffectedModuleDetectorPlugin : Plugin<Project> {
125
126
)
126
127
}
127
128
129
+
@Suppress("UnstableApiUsage")
128
130
@VisibleForTesting
129
131
internalfunregisterInternalTask(
130
132
rootProject:Project,
@@ -134,6 +136,9 @@ class AffectedModuleDetectorPlugin : Plugin<Project> {
134
136
val task = rootProject.tasks.register(taskType.commandByImpact).get()
135
137
task.group = groupName
136
138
task.description = taskType.taskDescription
139
+
if (GradleVersion.current() >=GradleVersion.version("7.4")) {
140
+
task.notCompatibleWithConfigurationCache("AMD requires knowledge of what has changed in the file system so we can not cache those values (https://github.com/dropbox/AffectedModuleDetector/issues/150)")
0 commit comments