Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 88 for withUpgradeGuideSection (0.43 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/precompile/PrecompiledSettingsScript.kt

                .withAdvice("Use a version of the plugin published with Gradle >= 6.0.")
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "kotlin_dsl_precompiled_gradle_lt_6")
                .nagUser()
        }
    
        override val fileOperations by lazy { fileOperationsFor(delegate) }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/precompile/PrecompiledInitScript.kt

                .withAdvice("Use a version of the plugin published with Gradle >= 6.0.")
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "kotlin_dsl_precompiled_gradle_lt_6")
                .nagUser()
        }
    
        override val fileOperations by lazy { fileOperationsFor(delegate, null) }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/tasks/GenerateMavenPom.java

                .withContext("This method was never intended for public use.")
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "generate_maven_pom_method_deprecations")
                .nagUser();
    
            return this;
        }
    
        /**
         * The values set by this method are ignored.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/cache/internal/LegacyCacheCleanupEnablement.java

                    DeprecationLogger.deprecateAction("Disabling Gradle user home cache cleanup with the '" + CACHE_CLEANUP_PROPERTY + "' property")
                        .willBeRemovedInGradle9()
                        .withUpgradeGuideSection(8, "disabling_user_home_cache_cleanup")
                        .nagUser();
                    return cleanup.equals("false");
                }
            }
            return false;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 09 22:09:09 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/util/RelativePathUtil.java

     */
    @Deprecated
    public class RelativePathUtil {
    
        private static void logDeprecation() {
            DeprecationLogger.deprecateType(RelativePathUtil.class)
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(7, "org_gradle_util_reports_deprecations")
                .nagUser();
        }
    
        public RelativePathUtil() {
            logDeprecation();
        }
    
        /**
         * Returns a relative path from 'from' to 'to'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 07 08:48:40 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/util/SingleMessageLogger.java

    public class SingleMessageLogger extends org.gradle.internal.deprecation.DeprecationLogger {
        static {
            DeprecationLogger.deprecateType(SingleMessageLogger.class)
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(7, "org_gradle_util_reports_deprecations")
                .nagUser();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-plugins/src/main/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginOptions.kt

    fun nagUserAboutJvmTarget() {
        DeprecationLogger.deprecateProperty(KotlinDslPluginOptions::class.java, "jvmTarget")
            .withAdvice("Configure a Java Toolchain instead.")
            .willBeRemovedInGradle9()
            .withUpgradeGuideSection(7, "kotlin_dsl_plugin_toolchains")
            .nagUser()
    }
    
    
    internal
    fun Project.kotlinDslPluginOptions(action: KotlinDslPluginOptions.() -> Unit) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 06:37:53 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/util/NameValidator.java

     */
    @Deprecated
    public final class NameValidator {
    
        private static void logDeprecation() {
            DeprecationLogger.deprecateType(NameValidator.class)
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(7, "org_gradle_util_reports_deprecations")
                .nagUser();
        }
    
        private static final char[] FORBIDDEN_CHARACTERS = new char[] {'/', '\\', ':', '<', '>', '"', '?', '*', '|'};
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 07 08:48:39 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/main/java/org/gradle/api/internal/plugins/NaggingBasePluginConvention.java

        }
    
        private static void logDeprecation() {
            DeprecationLogger.deprecateType(org.gradle.api.plugins.BasePluginConvention.class)
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "base_convention_deprecation")
                .nagUser();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/services/internal/BuildServiceProviderNagger.java

                .withAdvice("Declare the association between the task and the build service using 'Task#usesService'.")
                .willBecomeAnErrorInGradle9()
                .withUpgradeGuideSection(7, "undeclared_build_service_usage")
                .nagUser();
        }
    
        private static String undeclaredBuildServiceUsage(BuildServiceProvider<?, ?> provider, TaskInternal task) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 08:22:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top