Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for GeneralComponentSpec (0.25 sec)

  1. platforms/software/platform-base/src/main/java/org/gradle/platform/base/GeneralComponentSpec.java

    /**
     * A general purpose component specification, that can be used to represent some software component built from source and producing
     * multiple output variants.
     */
    @Incubating
    public interface GeneralComponentSpec extends ComponentSpec, SourceComponentSpec, VariantComponentSpec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 975 bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/platform/base/component/BaseComponentSpec.java

    import org.gradle.platform.base.Binary;
    import org.gradle.platform.base.BinarySpec;
    import org.gradle.platform.base.GeneralComponentSpec;
    import org.gradle.platform.base.component.internal.DefaultComponentSpec;
    
    /**
     * Base class that may be used for custom {@link GeneralComponentSpec} implementations. However, it is generally better to use an
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/customModel/languageType/groovy/buildSrc/src/main/groovy/sample/documentation/DocumentationComponent.groovy

    package sample.documentation
    
    import org.gradle.model.Managed
    import org.gradle.platform.base.GeneralComponentSpec
    
    // tag::component-declaration[]
    @Managed
    interface DocumentationComponent extends GeneralComponentSpec {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 254 bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/test/groovy/org/gradle/language/base/plugins/ComponentModelBasePluginTest.groovy

                    }
                }
            }
    
            then:
            type.isInstance(realize("baseComponent"))
    
            where:
            type                 | _
            GeneralComponentSpec | _
            ApplicationSpec      | _
            LibrarySpec          | _
        }
    
        def "links the binaries of each component in 'components' container into the 'binaries' container"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/registry/ComponentBinariesModelRuleExtractorTest.groovy

        }
    
        static interface SomeBinarySpec extends BinarySpec {}
    
        static interface SomeLibrary extends GeneralComponentSpec {}
    
        static interface RawLibrary extends GeneralComponentSpec {}
    
        static interface SomeBinarySubType extends SomeBinarySpec {}
    
        static class Rules {
            @ComponentBinaries
            static void noParams() {
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. platforms/software/test-suites-base/src/main/java/org/gradle/testing/base/TestSuiteSpec.java

    import org.gradle.api.Incubating;
    import org.gradle.platform.base.ComponentSpec;
    import org.gradle.platform.base.GeneralComponentSpec;
    
    /**
     * A component representing a suite of tests that will be built and executed together.
     */
    @Incubating
    public interface TestSuiteSpec extends GeneralComponentSpec {
        /**
         * The tested component.
         */
        ComponentSpec getTestedComponent();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 16:02:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentModelReportIntegrationTest.groovy

                             ⤷ ComponentModelBasePlugin.PluginRules#inputRules(ComponentModelBasePlugin.PluginRules.AttachInputs, GeneralComponentSpec)
                             ⤷ DeclarationRules#mutateMyComponent(UnmanagedComponent)
                        + binaries
                              | Type:   	org.gradle.model.ModelMap<org.gradle.platform.base.BinarySpec>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/BaseModelIntegrationTest.groovy

    import org.gradle.integtests.fixtures.UnsupportedWithConfigurationCache
    import org.gradle.platform.base.ApplicationSpec
    import org.gradle.platform.base.ComponentSpec
    import org.gradle.platform.base.GeneralComponentSpec
    import org.gradle.platform.base.LibrarySpec
    
    @UnsupportedWithConfigurationCache(because = "software model")
    class BaseModelIntegrationTest extends AbstractIntegrationSpec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/main/java/org/gradle/platform/base/LibrarySpec.java

     */
    
    package org.gradle.platform.base;
    
    import org.gradle.api.Incubating;
    
    /**
     * A specification of a {@link org.gradle.platform.base.Library}.
     */
    @Incubating
    public interface LibrarySpec extends GeneralComponentSpec {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 836 bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentIntegrationTest.groovy

    import org.gradle.integtests.fixtures.UnsupportedWithConfigurationCache
    import org.gradle.platform.base.ApplicationSpec
    import org.gradle.platform.base.ComponentSpec
    import org.gradle.platform.base.GeneralComponentSpec
    import org.gradle.platform.base.LibrarySpec
    import org.gradle.platform.base.SourceComponentSpec
    
    @UnsupportedWithConfigurationCache(because = "software model")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 25.1K bytes
    - Viewed (0)
Back to top