-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed configuration cache compatibility on AGP 7.4.0
- Loading branch information
Showing
7 changed files
with
44 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
plugin/src/main/kotlin/io/github/gmazzo/codeowners/CodeOwnersSourceSet.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
plugin/src/main/kotlin/io/github/gmazzo/codeowners/CodeOwnersSourceSetImpl.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
package io.github.gmazzo.codeowners | ||
|
||
import org.gradle.api.file.SourceDirectorySet | ||
import org.gradle.api.Named | ||
import org.gradle.api.tasks.TaskProvider | ||
import javax.inject.Inject | ||
|
||
internal abstract class CodeOwnersSourceSetImpl @Inject constructor( | ||
sources: SourceDirectorySet, | ||
name: String, | ||
override val generateTask: TaskProvider<CodeOwnersTask>, | ||
) : CodeOwnersSourceSet, | ||
SourceDirectorySet by sources | ||
Named by (Named { name }) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters