Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 83 for willBeRemovedInGradle9 (0.24 sec)

  1. subprojects/core-api/src/main/java/org/gradle/caching/local/DirectoryBuildCache.java

            }
            DeprecationLogger.deprecateProperty(DirectoryBuildCache.class, "removeEntriesAfterDays")
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "directory_build_cache_retention_deprecated")
                .nagUser();
    
            this.removeUnusedEntriesAfterDays = removeUnusedEntriesAfterDays;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 21:43:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/annotations/ReplacedDeprecation.java

    @Target({ElementType.METHOD})
    public @interface ReplacedDeprecation {
    
        /**
         * Set if deprecation nagging is enabled or not
         */
        boolean enabled() default true;
    
        /**
         * Corresponds to .willBeRemovedInGradle9() in the DeprecationLogger
         */
        RemovedIn removedIn() default RemovedIn.UNSPECIFIED;
    
        /**
         * Corresponds to .withUpgradeGuideSection(majorVersion, section) in the DeprecationLogger
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. 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)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/impl/DefaultBuildCacheKey.java

            // TODO Switch to SimpleBuildCacheKey once this method is removed
            DeprecationLogger.deprecateMethod(BuildCacheKey.class, "getDisplayName()")
                .replaceWith("getHashCode()")
                .willBeRemovedInGradle9()
                .undocumented()
                .nagUser();
            return getHashCode();
        }
    
        @Override
        public String toString() {
            return getHashCode();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:58 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationMessageBuilder.java

            this.problemId = problemId;
            return (T) this;
        }
    
        /**
         * Output: This is scheduled to be removed in Gradle 9.0.
         */
        public WithDeprecationTimeline willBeRemovedInGradle9() {
            this.deprecationTimeline = DeprecationTimeline.willBeRemovedInVersion(GRADLE9);
            return new WithDeprecationTimeline(this);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/plugins/JvmTestSuitePlugin.java

                test.getConventionMapping().map("testClassesDirs", () -> {
                    DeprecationLogger.deprecate("Relying on the convention for Test.testClassesDirs in custom Test tasks")
                        .willBeRemovedInGradle9()
                        .withUpgradeGuideSection(8, "test_task_default_classpath")
                        .nagUser();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 21:08:13 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  7. 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()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 07:10:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. platforms/software/reporting/src/main/java/org/gradle/api/reporting/internal/SimpleReport.java

        @Deprecated
        @Override
        public void setDestination(File file) {
            DeprecationLogger.deprecateProperty(Report.class, "destination")
                    .replaceWith("outputLocation")
                    .willBeRemovedInGradle9()
                    .withDslReference()
                    .nagUser();
    
            getOutputLocation().fileValue(file);
        }
        @Override
        public OutputType getOutputType() {
            return outputType;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:05:08 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/precompile/PrecompiledProjectScript.kt

                .withAdvice("Use a version of the plugin published with Gradle >= 6.0.")
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "kotlin_dsl_precompiled_gradle_lt_6")
                .nagUser()
        }
    
        /**
         * Configures the build script classpath for this project.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/util/ClosureBackedAction.java

     * @param <T> The action type.
     */
    @Deprecated
    public class ClosureBackedAction<T> implements Action<T> {
    
        static {
            DeprecationLogger.deprecateType(ClosureBackedAction.class)
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(7, "org_gradle_util_reports_deprecations")
                .nagUser();
        }
    
        private final Closure closure;
        private final int resolveStrategy;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top