Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getConvention (0.16 sec)

  1. 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)
  2. 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)
  3. 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