generated from cortinico/kotlin-gradle-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix plugin to work with Gradle Configuration Cache
- Loading branch information
1 parent
dcd0c2c
commit a4e1826
Showing
6 changed files
with
33 additions
and
7 deletions.
There are no files selected for viewing
6 changes: 4 additions & 2 deletions
6
plugin-build/modulegraph/src/main/kotlin/dev/iurysouza/modulegraph/ModuleType.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
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: 4 additions & 2 deletions
6
plugin-build/modulegraph/src/main/kotlin/dev/iurysouza/modulegraph/gradle/Module.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
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
5 changes: 4 additions & 1 deletion
5
plugin-build/modulegraph/src/main/kotlin/dev/iurysouza/modulegraph/model/GraphParseResult.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,10 +1,13 @@ | ||
package dev.iurysouza.modulegraph.model | ||
|
||
import dev.iurysouza.modulegraph.model.alias.ProjectGraph | ||
import kotlinx.serialization.Serializable | ||
import java.io.Serializable as JavaSerializable | ||
|
||
@Serializable | ||
internal data class GraphParseResult( | ||
/** The output graph model after parsing */ | ||
val graph: ProjectGraph, | ||
/** The original config provided used to produce [graph] */ | ||
val config: GraphConfig, | ||
) | ||
) : JavaSerializable |