Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ProjectDependency (0.26 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ProjectSpecificFingerprint.kt

    internal
    sealed class ProjectSpecificFingerprint {
        data class ProjectFingerprint(
            val projectPath: Path,
            val value: ConfigurationCacheFingerprint
        ) : ProjectSpecificFingerprint()
    
        data class ProjectDependency(
            val consumingProject: Path,
            val targetProject: Path
        ) : ProjectSpecificFingerprint()
    
        data class CoupledProjects(
            val referringProject: Path,
            val targetProject: Path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                                }
                                state.invalidate()
                            }
                        }
                    }
                    is ProjectSpecificFingerprint.ProjectDependency -> {
                        val consumer = projects.entryFor(input.consumingProject)
                        val target = projects.entryFor(input.targetProject)
                        target.consumedBy(consumer)
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.artifacts.ProjectDependency.getBuildDependencies()> does not have raw return type assignable to org.gradle.api.provider.Provider in (ProjectDependency.java:0)
    Method <org.gradle.api.artifacts.ProjectDependency.getDependencyProject()> does not have raw return type assignable to org.gradle.api.provider.Provider in (ProjectDependency.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

            }
        }
    
        private
        fun onProjectDependency(consumerPath: Path, targetPath: Path) {
            if (host.cacheIntermediateModels) {
                val dependency = ProjectSpecificFingerprint.ProjectDependency(consumerPath, targetPath)
                if (projectDependencies.add(dependency)) {
                    projectScopedWriter.write(dependency)
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Currently, `ProjectDependency` and `FileCollectionDependency` implement this interface.
    In Gradle 9.0, these types will no longer implement `SelfResolvingDependency`.
    Instead, they will both directly implement `Dependency`.
    
    As such, the following methods of `ProjectDependency` and `FileCollectionDependency` will no longer be available:
    
    - `resolve`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top