Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for getConvention (0.28 sec)

  1. platforms/documentation/docs/src/snippets/kotlinDsl/applying-plugins-imperative/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Do not fail for deprecation warnings: Project.getConvention; Spring boot 3.0.2+ no longer uses that API
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 166 bytes
    - Viewed (0)
  2. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/AbstractConventionTaskTest.groovy

            when:
            ConventionAwareHelper conventionMapping = (ConventionAwareHelper) task.getConventionMapping();
    
            then:
            conventionMapping.getConvention().is(task.getConvention())
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 22 12:57:17 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/kotlinDsl/multiProjectBuild/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Do not fail for deprecation warnings: Project.getConvention emitted by the shadow plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 151 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/kotlinDsl/applying-plugins-declarative/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Do not fail for deprecation warnings: Project.getConvention; Spring boot 3.0.2+ no longer uses that API
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 166 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/kotlinDsl/multiProjectBuild/tests/build.sample.conf

    executable: gradle
    args: build
    # Do not fail for deprecation warnings: Project.getConvention emitted by the shadow plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 151 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/kotlinDsl/configuring-tasks-spring-boot/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Do not fail for deprecation warnings: Project.getConvention; Spring boot 3.0.2+ no longer uses that API
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 166 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/spring-boot-web-application/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Do not fail for deprecation warnings: Project.getConvention; Spring boot 3.0.2+ no longer uses that API
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 166 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/tests/build-server-application.sample.conf

    commands: [{
        executable: gradle
        args: build
        execution-subdirectory: server-application
        # Do not fail for deprecation warnings: Project.getConvention; Spring boot 3.0.2+ no longer uses that API
        flags: "--warning-mode=none"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 245 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/spring-boot-web-application/tests/testTask.sample.conf

    commands: [{
        executable: gradle
        args: test
        expected-output-file: testTask.out
    # Do not fail for deprecation warnings: Project.getConvention; Spring boot 3.0.2+ no longer uses that API
        flags: "--warning-mode=none"
        allow-disordered-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 266 bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/plugins/DslObject.java

            }
            return dynamicObject;
        }
    
        @Override
        @Deprecated
        public org.gradle.api.plugins.Convention getConvention() {
    // TODO nag once KGP doesn't register conventions anymore
    //        DeprecationLogger.deprecateType(org.gradle.api.internal.HasConvention.class)
    //            .willBeRemovedInGradle9()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top