Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for consumerProjectPath (0.32 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultPlannedTransformStepIdentity.java

            ConfigurationIdentity dependenciesConfigurationIdentity,
            long transformStepNodeId
        ) {
            this.consumerBuildPath = consumerBuildPath;
            this.consumerProjectPath = consumerProjectPath;
            this.componentId = componentId;
            this.sourceAttributes = sourceAttributes;
            this.targetAttributes = targetAttributes;
            this.capabilities = capabilities;
            this.artifactName = artifactName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

            actual.nodeType.toString() == TRANSFORM_STEP &&
                actual.consumerBuildPath == expected.consumerBuildPath &&
                actual.consumerProjectPath == expected.consumerProjectPath &&
                actual.componentId == expected.componentId &&
                actual.sourceAttributes == expected.sourceAttributes &&
                actual.targetAttributes == expected.targetAttributes &&
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformStepNode.java

            return cachedIdentity;
        }
    
        private PlannedTransformStepIdentity createIdentity() {
            String consumerBuildPath = transformStep.getOwningProject().getBuildPath().toString();
            String consumerProjectPath = transformStep.getOwningProject().getProjectPath().toString();
            ComponentIdentifier componentId = ComponentToOperationConverter.convertComponentIdentifier(targetComponentVariant.getComponentId());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                subjectName == "lib.jar (project :lib)"
                with(plannedTransformStepIdentity) {
                    nodeType == "TRANSFORM_STEP"
                    consumerBuildPath == ":"
                    consumerProjectPath == ":app"
                    componentId == [buildPath: ":", projectPath: ":lib"]
                    sourceAttributes == [artifactType: "jar", usage: "api"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
Back to top