Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for getBuildPath (0.15 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/component/ProjectComponentSelector.java

         * Absolute build path of the build within the Gradle invocation to select a project from.
         *
         * @since 8.2
         */
        String getBuildPath();
    
        /**
         * The name of the build to select a project from.
         *
         * @return The build name
         * @deprecated Use {@link #getBuildPath()} instead.
         */
        @Deprecated
        String getBuildName();
    
        /**
         * The path of the project to select the component from.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 18:25:54 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/initialization/ProjectsIdentifiedProgressDetails.java

     * that reference those projects are executed.
     *
     * @since 8.0
     */
    public interface ProjectsIdentifiedProgressDetails {
        /**
         * @see LoadProjectsBuildOperationType.Result#getBuildPath()
         */
        String getBuildPath();
    
        /**
         * @see LoadProjectsBuildOperationType.Result#getRootProject()
         */
        Project getRootProject();
    
        interface Project {
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/initialization/NotifyingBuildLoader.java

                        .progressDisplayName("Loading projects")
                        .details(new LoadProjectsBuildOperationType.Details() {
                            @Override
                            public String getBuildPath() {
                                return buildPath;
                            }
                        });
                }
    
                @Override
                public Void call(BuildOperationContext context) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/BuildOperationFiringSettingsPreparer.java

                        @Override
                        public String getBuildPath() {
                            return gradle.getIdentityPath().toString();
                        }
    
                        @Override
                        public String getIncludedBy() {
                            return fromBuild == null ? null : fromBuild.getBuildPath().toString();
                        }
                    });
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcIdentityIntegrationTest.groovy

                }
            """
    
            2.times {
                executer.expectDocumentedDeprecationWarning("The BuildIdentifier.getName() method has been deprecated. This is scheduled to be removed in Gradle 9.0. Use getBuildPath() to get a unique identifier for the build. Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_8.html#build_identifier_name_and_current_deprecation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ComponentToOperationConverter.java

                return new org.gradle.operations.dependencies.variants.ProjectComponentIdentifier() {
                    @Override
                    public String getBuildPath() {
                        return projectComponentIdentifier.getBuild().getBuildPath();
                    }
    
                    @Override
                    public String getProjectPath() {
                        return projectComponentIdentifier.getProjectPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/BuildIdentifierSerializer.java

            } else if (value instanceof ForeignBuildIdentifier) {
                encoder.writeByte(FOREIGN);
                encoder.writeString(value.getBuildPath());
            } else {
                encoder.writeByte(LOCAL);
                encoder.writeString(value.getBuildPath());
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultProjectComponentSelector.java

            return buildIdentifier;
        }
    
        @Override
        public String getBuildPath() {
            return buildIdentifier.getBuildPath();
        }
    
        @SuppressWarnings("deprecation")
        @Override
        public String getBuildName() {
            DeprecationLogger.deprecateMethod(ProjectComponentSelector.class, "getBuildName()")
                .withAdvice("Use getBuildPath() to get a unique identifier for the build.")
                .willBeRemovedInGradle9()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 01:47:36 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/NestedSourceDependencyIdentityIntegrationTest.groovy

                }
            """
    
            4.times {
                executer.expectDocumentedDeprecationWarning("The BuildIdentifier.getName() method has been deprecated. This is scheduled to be removed in Gradle 9.0. Use getBuildPath() to get a unique identifier for the build. Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_8.html#build_identifier_name_and_current_deprecation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/initialization/LoadProjectsBuildOperationType.java

             */
            String getBuildPath();
        }
    
        public interface Result {
            /**
             * The path of the build configuration that contains these projects.
             * This will be ':' for top-level builds. Nested builds will have a sub-path.
             *
             * See {@code org.gradle.api.internal.GradleInternal#getIdentityPath()}.
             */
            String getBuildPath();
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top