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
* To enable affected module detection, you need to pass [ENABLE_ARG]
34
+
* To enable affected module detection, you need to pass [com.dropbox.affectedmoduledetector.AffectedModuleDetector.Companion.ENABLE_ARG]
35
35
* into the build as a command line parameter.
36
36
*
37
37
* See [AffectedModuleDetector] for additional flags.
@@ -125,7 +125,6 @@ class AffectedModuleDetectorPlugin : Plugin<Project> {
125
125
)
126
126
}
127
127
128
-
@Suppress("UnstableApiUsage")
129
128
@VisibleForTesting
130
129
internalfunregisterInternalTask(
131
130
rootProject:Project,
@@ -151,6 +150,7 @@ class AffectedModuleDetectorPlugin : Plugin<Project> {
151
150
}
152
151
}
153
152
153
+
@Suppress("UnstableApiUsage")
154
154
privatefundisableConfigCache(task:Task) {
155
155
if (GradleVersion.current() >=GradleVersion.version("7.4")) {
156
156
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)")
@@ -159,7 +159,7 @@ class AffectedModuleDetectorPlugin : Plugin<Project> {
159
159
160
160
privatefunwithPlugin(
161
161
pluginId:String,
162
-
taskToConfigure:Task,
162
+
task:Task,
163
163
testType:AffectedModuleTaskType,
164
164
project:Project
165
165
) {
@@ -171,19 +171,17 @@ class AffectedModuleDetectorPlugin : Plugin<Project> {
Copy file name to clipboardExpand all lines: affectedmoduledetector/src/test/kotlin/com/dropbox/affectedmoduledetector/AffectedModuleDetectorIntegrationTest.kt
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -111,8 +111,8 @@ class AffectedModuleDetectorIntegrationTest {
0 commit comments