Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for configureSchema (0.18 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultDependencyManagementServices.java

                platformSupport.configureSchema(attributesSchema);
                GradlePluginVariantsSupport.configureSchema(attributesSchema);
                return attributesSchema;
            }
    
            @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  2. platforms/jvm/jvm-services/src/main/java/org/gradle/api/internal/artifacts/JavaEcosystemSupport.java

         * No plans for permanent removal.
         */
        @Deprecated
        public static final String DEPRECATED_JAVA_RUNTIME_RESOURCES = "java-runtime-resources";
    
        public static void configureSchema(AttributesSchema attributesSchema, final ObjectFactory objectFactory) {
            configureUsage(attributesSchema, objectFactory);
            configureLibraryElements(attributesSchema, objectFactory);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:00 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  3. platforms/jvm/java-platform/src/test/java/org/gradle/internal/component/model/JavaEcosystemAttributeMatcherTest.groovy

        def schema = new DefaultAttributesSchema(TestUtil.instantiatorFactory(), new TestIsolatableFactory())
        def explanationBuilder = Stub(AttributeMatchingExplanationBuilder)
    
        def setup() {
            JavaEcosystemSupport.configureSchema(schema, TestUtil.objectFactory())
        }
    
        def "resolve compileClasspath with java plugin"() {
            def requested = attributes(Usage.JAVA_API, LibraryElements.CLASSES, 8)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top