Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for willBeRemovedInGradle9 (0.35 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/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)
  3. 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)
  4. 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)
  5. subprojects/core-api/src/main/java/org/gradle/api/Task.java

                    .replaceWith("Named.Namer.INSTANCE")
                    .withContext("Task implements Named, so you can use Named.Namer.INSTANCE instead of Task.Namer")
                    .willBeRemovedInGradle9()
                    .withUpgradeGuideSection(8, "deprecated_namers")
                    .nagUser();
            }
    
            @Override
            public String determineName(Task task) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
Back to top