Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getApiElementsConfiguration (0.36 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmFeatureInternal.java

         * or {@code runtimeOnly} dependencies.
         *
         * @return The {@code apiElements} configuration.
         */
        Configuration getApiElementsConfiguration();
    
        /**
         * Get the consumable configuration which produces the {@code runtimeElements} variant of this feature.
         * This configuration includes all runtime dependencies as well as the feature's
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmFeature.java

        }
    
        @Override
        public Configuration getCompileClasspathConfiguration() {
            return compileClasspath;
        }
    
        @Override
        public Configuration getApiElementsConfiguration() {
            return apiElements;
        }
    
        @Override
        public Configuration getRuntimeElementsConfiguration() {
            return runtimeElements;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 21K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java/src/main/java/org/gradle/api/plugins/JavaPlugin.java

            // TODO: This process of manually adding variants to the component should be handled automatically when adding the feature to the component.
            component.addVariantsFromConfiguration(mainFeature.getApiElementsConfiguration(), new JavaConfigurationVariantMapping("compile", false, mainFeature.getCompileClasspathConfiguration()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
Back to top