Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for withUpgradeGuideSection (0.85 sec)

  1. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/annotations/ReplacedDeprecation.java

        /**
         * Corresponds to .withUpgradeGuideSection(majorVersion, section) in the DeprecationLogger
         */
        int withUpgradeGuideMajorVersion() default -1;
    
        /**
         * Corresponds to .withUpgradeGuideSection(majorVersion, section) in the DeprecationLogger
         *
         * withUpgradeGuideSection is only added if withUpgradeGuideMajorVersion is set
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/AbstractCompile.java

            },
            binaryCompatibility = ACCESSORS_KEPT,
            deprecation = @ReplacedDeprecation(removedIn = RemovedIn.GRADLE9, withUpgradeGuideMajorVersion = 7, withUpgradeGuideSection = "compile_task_wiring")
        )
        public DirectoryProperty getDestinationDirectory() {
            return destinationDirectory;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dependencies/DefaultFileCollectionDependency.java

                .withAdvice("Add the dependency to a resolvable configuration and resolve the configuration.")
                .willBecomeAnErrorInGradle9()
                .withUpgradeGuideSection(8, "deprecate_self_resolving_dependency")
                .nagUser();
    
            return source.getFiles();
        }
    
        @Override
        @Deprecated
        public Set<File> resolve(boolean transitive) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultResolvedConfiguration.java

            DeprecationLogger.deprecateMethod(ResolvedConfiguration.class, "getFiles(Spec)")
                .withAdvice("Use an ArtifactView with a componentFilter instead.")
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "deprecate_filtered_configuration_file_and_filecollection_methods")
                .nagUser();
    
            ResolvedFilesCollectingVisitor visitor = new ResolvedFilesCollectingVisitor();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleControllerFactory.java

        }
    
        private static void logFileDeprecationWarning(DeprecationMessageBuilder<?> specifyingCustomFileLocation) {
            specifyingCustomFileLocation
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(7, "configuring_custom_build_layout")
                .nagUser();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PluginDependenciesSpecExtensions.kt

                .withAdvice("Please use 'id(\"com.gradle.develocity\") version \"${AutoAppliedDevelocityPlugin.VERSION}\"' instead.")
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "gradle_enterprise_extension_deprecated")
                .nagUser()
            return this.id(AutoAppliedDevelocityPlugin.GRADLE_ENTERPRISE_PLUGIN_ID.id).version(AutoAppliedDevelocityPlugin.VERSION)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 07:10:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/DefaultToolchainSpec.java

                // This should make the spec invalid when the enum gets removed
                DeprecationLogger.deprecateBehaviour("Requesting JVM vendor IBM_SEMERU.")
                    .willBeRemovedInGradle9()
                    .withUpgradeGuideSection(8, "ibm_semeru_should_not_be_used")
                    .nagUser();
            }
            return getLanguageVersion().isPresent() || isSecondaryPropertiesUnchanged();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DeprecatedFeaturesListener.kt

        private
        fun nagUserAbout(action: String, upgradeGuideMajorVersion: Int, upgradeGuideSection: String) {
            DeprecationLogger.deprecateAction(action)
                .willBecomeAnErrorInGradle9()
                .withUpgradeGuideSection(upgradeGuideMajorVersion, upgradeGuideSection)
                .nagUser()
        }
    
        private
        fun shouldNagFor(task: TaskInternal, runningTask: TaskInternal?) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/Documentation.java

            }
    
            /**
             * Output: Consult the upgrading guide for further information: UPGRADE_GUIDE_URL
             */
            @CheckReturnValue
            public T withUpgradeGuideSection(int majorVersion, String upgradeGuideSection) {
                return withDocumentation(Documentation.upgradeGuide(majorVersion, upgradeGuideSection));
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultGradleEnterprisePluginCheckInService.java

                    MINIMUM_SUPPORTED_PLUGIN_VERSION_SINCE_GRADLE_9.getMinor(),
                    MINIMUM_SUPPORTED_PLUGIN_VERSION_SINCE_GRADLE_9.getMicro()
                ))
                .withUpgradeGuideSection(8, "unsupported_ge_plugin_3.13")
                .nagUser();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 13:28:46 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top