Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 5,275 for componentX (0.16 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishArtifactCustomizationIntegTest.groovy

                }
            }
        }
    
        /**
         * Fails with module metadata.
         */
        def "can modify artifacts added from component"() {
            given:
            createBuildScripts("""
                publications {
                    maven(MavenPublication) {
                        from components.java
                    }
                }
                publications.maven.artifacts.each {
                    if (it.extension == 'jar') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced-published/groovy/buildSrc/src/main/groovy/com/acme/InstrumentedJarsPlugin.groovy

            // tag::create_adhoc_component[]
            // create an adhoc component
            def adhocComponent = softwareComponentFactory.adhoc("myAdhocComponent")
            // add it to the list of components that this project declares
            project.components.add(adhocComponent)
            // and register a variant for publication
            adhocComponent.addVariantsFromConfiguration(outgoing) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AbstractMutableModuleComponentResolveMetadata.java

    import org.gradle.internal.component.external.descriptor.Configuration;
    import org.gradle.internal.component.model.ComponentArtifactMetadata;
    import org.gradle.internal.component.model.ComponentConfigurationIdentifier;
    import org.gradle.internal.component.model.DefaultIvyArtifactName;
    import org.gradle.internal.component.model.ExcludeMetadata;
    import org.gradle.internal.component.model.IvyArtifactName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/ivy-publish/quickstart/kotlin/build.gradle.kts

    }
    // end::use-plugin[]
    
    group = "org.gradle.sample"
    version = "1.0"
    
    // tag::publish-component[]
    // tag::repositories[]
    publishing {
        // end::repositories[]
        publications {
            create<IvyPublication>("ivyJava") {
                from(components["java"])
            }
        }
    // end::publish-component[]
    // tag::repositories[]
        repositories {
            ivy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 683 bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ArtifactResolutionResult.java

         * </ul>
         * @return the set of results for all requested components
         */
        Set<ComponentResult> getComponents();
    
        /**
         * <p>Return a set of {@link ComponentResult} instances representing all successfully resolved components.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 10 09:42:35 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ComponentVariantNodeIdentifier.java

        private final ComponentIdentifier componentId;
        private final String variantName;
    
        public ComponentVariantNodeIdentifier(ComponentIdentifier componentId, String variantName) {
            this.componentId = componentId;
            this.variantName = variantName;
        }
    
        @Override
        public String toString() {
            return componentId.getDisplayName() + ":" + variantName;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/ComponentFileArtifactIdentifierTest.groovy

            }
        }
    
        def "has useful string representation"() {
            def componentId = new DummyComponentIdentifier()
    
            expect:
            new ComponentFileArtifactIdentifier(componentId, "thing").toString() == "thing (example)"
        }
    
        def "identifiers are equal when display names are equal"() {
            def componentId = new DummyComponentIdentifier()
            def otherId = new DummyComponentIdentifier()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/ivy-publish/quickstart/groovy/build.gradle

        id 'ivy-publish'
    }
    // end::use-plugin[]
    
    group = 'org.gradle.sample'
    version = '1.0'
    
    // tag::publish-component[]
    // tag::repositories[]
    publishing {
    // end::repositories[]
        publications {
            ivyJava(IvyPublication) {
                from components.java
            }
        }
    // end::publish-component[]
    // tag::repositories[]
        repositories {
            ivy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 668 bytes
    - Viewed (0)
  9. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppBasePluginTest.groovy

        }
    
        def "registers a Swift PM publication for each production component"() {
            def component = Stub(DefaultCppApplication)
            def prop = Stub(Property)
            prop.get() >> "SomeApp"
            component.baseName >> prop
    
            when:
            project.pluginManager.apply(CppBasePlugin)
            project.components.add(component)
            project.evaluate()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyPublication.java

        /**
         * Provides the software component that should be published.
         *
         * <ul>
         *     <li>Any artifacts declared by the component will be included in the publication.</li>
         *     <li>The dependencies declared by the component will be included in the published meta-data.</li>
         * </ul>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.8K bytes
    - Viewed (0)
Back to top