Skip to content

Commit

Permalink
Merge pull request #635 from gradle/gk/MergeSourceSetFolders_fixed_8.…
Browse files Browse the repository at this point in the history
…4.0alpha01

Removed support for MergeSourceSetFolders in 8.4.0
  • Loading branch information
ribafish authored Jan 3, 2024
2 parents 859a7c6 + 78062b4 commit dc65a5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import org.gradle.api.Task
* performance benefits.
*/
@CompileStatic
@AndroidIssue(introducedIn = "3.5.0", fixedIn = [], link = "https://issuetracker.google.com/issues/194804421")
@AndroidIssue(introducedIn = "3.5.0", fixedIn = ["8.4.0-alpha01"], link = "https://issuetracker.google.com/issues/194804421")
class MergeSourceSetFoldersWorkaround implements Workaround {
private static final String CACHING_ENABLED_PROPERTY = "org.gradle.android.cache-fix.MergeSourceSetFolders.caching.enabled"

Expand Down
2 changes: 1 addition & 1 deletion src/test/groovy/org/gradle/android/WorkaroundTest.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class WorkaroundTest extends Specification {
workarounds.collect { it.class.simpleName.replaceAll(/Workaround/, "") }.sort() == expectedWorkarounds.sort()
where:
androidVersion | expectedWorkarounds
"8.4.0-alpha01" | ['MergeSourceSetFolders', 'JdkImage']
"8.4.0-alpha01" | ['JdkImage']
"8.3.0-beta01" | ['MergeSourceSetFolders', 'JdkImage']
"8.2.0" | ['MergeSourceSetFolders', 'JdkImage', 'PackageForUnitTest']
"8.1.4" | ['MergeSourceSetFolders', 'JdkImage', 'PackageForUnitTest']
Expand Down

0 comments on commit dc65a5d

Please sign in to comment.