Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 94 for willBeRemovedInGradle9 (0.31 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/jvm/war/src/main/java/org/gradle/api/plugins/internal/DefaultWarPluginConvention.java

            logDeprecation();
            return project;
        }
    
        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)
  6. 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)
  7. 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)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/ScriptHandlerDelegate.kt

    abstract class ScriptHandlerDelegate : ScriptHandler {
    
        init {
            @Suppress("DEPRECATION")
            DeprecationLogger.deprecateType(ScriptHandlerDelegate::class.java)
                .willBeRemovedInGradle9()
                .undocumented()
                .nagUser()
        }
    
        internal
        abstract val delegate: ScriptHandler
    
        override fun getSourceFile(): File? =
            delegate.sourceFile
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 20:33:21 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. 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)
  10. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/NaggingJavaPluginConvention.java

        }
    
        @SuppressWarnings("deprecation")
        private static void logDeprecation() {
            DeprecationLogger.deprecateType(org.gradle.api.plugins.JavaPluginConvention.class)
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "java_convention_deprecation")
                .nagUser();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top