Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 88 for withUpgradeGuideSection (0.6 sec)

  1. subprojects/core/src/main/java/org/gradle/util/DistributionLocator.java

    @Deprecated
    public class DistributionLocator {
    
        private static void logDeprecation() {
            DeprecationLogger.deprecateType(DistributionLocator.class)
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(7, "org_gradle_util_reports_deprecations")
                .nagUser();
        }
    
        private static final String RELEASE_REPOSITORY = "https://services.gradle.org/distributions";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 07 08:48:39 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/plugins/internal/DefaultProjectReportsPluginConvention.java

        }
    
        private static void logDeprecation() {
            DeprecationLogger.deprecateType(org.gradle.api.plugins.ProjectReportsPluginConvention.class)
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "project_report_convention_deprecation")
                .nagUser();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 13 12:55:19 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dependencies/DefaultProjectDependency.java

                .withAdvice("Add the dependency to a resolvable configuration and resolve the configuration.")
                .willBecomeAnErrorInGradle9()
                .withUpgradeGuideSection(8, "deprecate_self_resolving_dependency")
                .nagUser();
    
            org.gradle.api.internal.artifacts.CachingDependencyResolveContext context =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 9.9K 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/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/plugins/JvmTestSuitePlugin.java

                    DeprecationLogger.deprecate("Relying on the convention for Test.testClassesDirs in custom Test tasks")
                        .willBeRemovedInGradle9()
                        .withUpgradeGuideSection(8, "test_task_default_classpath")
                        .nagUser();
    
                    return ((JvmTestSuite) testing.getSuites().findByName(JvmTestSuitePlugin.DEFAULT_TEST_SUITE_NAME)).getSources().getOutput().getClassesDirs();
    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()
            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)
  8. platforms/jvm/war/src/main/java/org/gradle/api/plugins/internal/DefaultWarPluginConvention.java

        }
    
        private static void logDeprecation() {
            DeprecationLogger.deprecateType(org.gradle.api.plugins.WarPluginConvention.class)
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "war_convention_deprecation")
                .nagUser();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 20:00:24 UTC 2023
    - 2.2K 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.
         *
         * @see [Project.buildscript]
         */
    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

     */
    @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;
        private final boolean configurableAware;
    
    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