Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for willBeRemovedInGradle9 (0.5 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/ProjectDelegate.kt

            if (!org.gradle.kotlin.dsl.precompile.PrecompiledProjectScript::class.java.isAssignableFrom(this::class.java)) {
                DeprecationLogger.deprecateType(ProjectDelegate::class.java)
                    .willBeRemovedInGradle9()
                    .undocumented()
                    .nagUser()
            }
        }
    
        internal
        abstract val delegate: Project
    
        override fun getGroup(): Any =
            delegate.group
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:16:16 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyHandler.java

            DeprecationLogger.deprecateAction("Declaring client module dependencies")
                .replaceWith("component metadata rules")
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "declaring_client_module_dependencies")
                .nagUser();
    
            return dependencyFactory.createModule(notation, configureClosure);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 08:14:09 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

                .withAdvice("Declare the desired test framework directly on the test suite or explicitly declare the test framework implementation dependencies on the test's runtime classpath.")
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "test_framework_implementation_dependencies")
                .nagUser();
    
            if (isModule) {
                return new ForkedTestClasspath(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/DefaultPrecompiledScriptPluginsSupport.kt

        }
    }
    
    
    private
    val strictModeSystemPropertyNameMapper: Transformer<Boolean, String> = Transformer { prop ->
        DeprecationLogger.deprecateSystemProperty(strictModeSystemPropertyName)
            .willBeRemovedInGradle9()
            .withUpgradeGuideSection(7, "strict-kotlin-dsl-precompiled-scripts-accessors-by-default")
            .nagUser()
        if (prop.isBlank()) true
        else java.lang.Boolean.parseBoolean(prop)
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 10:44:10 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/InitScriptApi.kt

                !org.gradle.kotlin.dsl.KotlinInitScript::class.java.isAssignableFrom(this::class.java)) {
                DeprecationLogger.deprecateType(InitScriptApi::class.java)
                    .willBeRemovedInGradle9()
                    .undocumented()
                    .nagUser()
            }
        }
    
        protected
        abstract val fileOperations: FileOperations
    
        protected
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SettingsScriptApi.kt

                !org.gradle.kotlin.dsl.KotlinSettingsScript::class.java.isAssignableFrom(this::class.java)) {
                DeprecationLogger.deprecateType(SettingsScriptApi::class.java)
                    .willBeRemovedInGradle9()
                    .undocumented()
                    .nagUser()
            }
        }
    
        protected
        abstract val fileOperations: FileOperations
    
        protected
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

     *
     * @deprecated Will be removed in Gradle 9.0.
     */
    @Deprecated
    public class GUtil {
    
        static {
            DeprecationLogger.deprecateType(GUtil.class)
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(7, "org_gradle_util_reports_deprecations")
                .nagUser();
        }
    
        private static final Pattern WORD_SEPARATOR = Pattern.compile("\\W+");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/util/CollectionUtils.java

     */
    @Deprecated
    public abstract class CollectionUtils {
    
        private static void logDeprecation(int upgradeGuideMajorVersion) {
            DeprecationLogger.deprecateType(CollectionUtils.class)
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(upgradeGuideMajorVersion, "org_gradle_util_reports_deprecations")
                .nagUser();
        }
    
        public CollectionUtils() {
            logDeprecation(7);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/LibrariesSourceGenerator.java

                    ".withAdvice(\"Only use versions or plugins from catalogs in the plugins block.\")" +
                    ".willBeRemovedInGradle9()" +
                    ".withUpgradeGuideSection(8, \"kotlin_dsl_deprecated_catalogs_plugins_block\")" +
                    ".nagUser();"
                );
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 36K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

                .withContext("Setting custom build file to select the default project has been deprecated.")
                .withAdvice("Please use 'projectDir' to specify the directory of the default project instead.")
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "configuring_custom_build_layout")
                .nagUser();
        }
    
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top