Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getConvention (0.19 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            Convention conv = new ExtensibleDynamicObject(this, DynamicObjectAwareBean.class, TestUtil.instantiatorFactory().decorateLenient()).getConvention();
    
            public Convention getConvention() {
                return conv;
            }
    
            public ExtensionContainer getExtensions() {
                return conv;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

        @Override
        public abstract RoleBasedConfigurationContainerInternal getConfigurations();
    
        @Deprecated
        @Override
        public org.gradle.api.plugins.Convention getConvention() {
            return extensibleDynamicObject.getConvention();
        }
    
        @Override
        public String getPath() {
            return owner.getProjectPath().toString();
        }
    
        @Override
        public String getBuildTreePath() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    This is done to reduce confusion about what such relative paths should resolve against.
    
    [[task_convention]]
    ==== Calling `Task.getConvention()`, `Task.getExtensions()` from a task action
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    The concept of conventions is outdated and superseded by extensions.
    To reflect this in the Gradle API, the following elements are now deprecated:
    
    - link:{javadocPath}/org/gradle/api/Project.html#getConvention--[org.gradle.api.Project.getConvention()]
    - `org.gradle.api.internal.HasConvention` (deprecated)
    
    The internal usages of conventions have been also cleaned up (see the deprecated items below).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * @deprecated The concept of conventions is deprecated. Use extensions if possible.
         * @see ExtensionAware#getExtensions()
         */
        @Deprecated
        org.gradle.api.plugins.Convention getConvention();
    
        /**
         * <p>Compares the nesting level of this project with another project of the multi-project hierarchy.</p>
         *
         * @param otherProject The project to compare the nesting level with.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top