Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 219 for coordinatesOf (0.22 sec)

  1. platforms/documentation/docs/src/snippets/developingPlugins/customTask/groovy/build.gradle

    // tag::plugin-extension[]
    plugins {
        id 'org.myorg.binary-repository-version'
    }
    
    binaryRepo {
        coordinates = 'commons-lang:commons-lang'
        serverUrl = 'http://repo2.myorg.org/maven2'
    }
    // end::plugin-extension[]
    
    // tag::direct-task-register[]
    tasks.register('latestVersionMavenCentral', LatestArtifactVersion) {
        coordinates = 'commons-lang:commons-lang'
        serverUrl = 'http://repo1.maven.org/maven2'
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 654 bytes
    - Viewed (0)
  2. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/ComponentData.java

    import org.gradle.api.internal.attributes.ImmutableAttributes;
    
    class ComponentData {
        final ModuleVersionIdentifier coordinates;
        final ImmutableAttributes attributes;
    
        ComponentData(ModuleVersionIdentifier coordinates, ImmutableAttributes attributes) {
            this.coordinates = coordinates;
            this.attributes = attributes;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/tasks/MavenPomFileGeneratorTest.groovy

                properties["hibernate.version"] == "5.4.1.Final"
            }
        }
    
        def "encodes coordinates for XML and unicode"() {
            given:
            pom.coordinates.groupId.set('group-ぴ₦ガき∆ç√∫')
            pom.coordinates.artifactId.set('artifact-<tag attrib="value"/>-markup')
            pom.coordinates.version.set('version-&"')
    
            expect:
            with (xml) {
                groupId == 'group-ぴ₦ガき∆ç√∫'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultProjectDependencyPublicationResolverTest.groovy

    Found the following publications in <project>:
      - Publication 'mock' with coordinates pub-group:pub-name:pub-version
      - Publication 'pub2' with coordinates other-group:other-name:other-version""")
        }
    
        def "resolve fails when target project has multiple component publications with different coordinates"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:37:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  5. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/ComponentDependencyResolver.java

    /**
     * Given a declared dependency to be published, determines the coordinates
     * that should be used to reference the dependency in published metadata. Dependencies
     * are resolved to component-level precision, meaning the coordinates of the resolved
     * variant's owning component are returned.
     */
    public interface ComponentDependencyResolver {
    
        /**
         * Determines the published coordinates for an external dependency to component-level precision.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:37:13 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/VariantDependencyResolver.java

    /**
     * Given a declared dependency to be published, determines the coordinates
     * that should be used to reference the dependency in published metadata. Dependencies
     * are resolved to variant-level precision, meaning that if resolved variant
     * is published to different coordinates than the declared component, the
     * variant coordinates are returned.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelResolver.java

    /**
     * Resolves a POM from its coordinates.
     */
    public interface ModelResolver extends Service {
    
        /**
         * Tries to resolve the POM for the specified parent coordinates possibly updating {@code parent}.
         *
         * @param session The session to use to resolve the model, must not be {@code null}.
         * @param parent The parent coordinates to resolve, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/component/ConfigurationVariantDetailsInternal.java

            /**
             * If true, the resolved coordinates of the dependencies will be published instead of
             * the declared coordinates. For example, if a given dependency resolves to a variant
             * of the target component that is published as an external variant, then the external
             * coordinates will be published instead of the declared coordinates.
             */
            Property<Boolean> getPublishResolvedCoordinates();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/resolution/ModelResolver.java

    import org.apache.maven.api.model.Dependency;
    import org.apache.maven.api.model.Parent;
    import org.apache.maven.api.model.Repository;
    import org.apache.maven.model.building.ModelSource;
    
    /**
     * Resolves a POM from its coordinates. During the build process, the
     * {@link org.apache.maven.model.building.ModelBuilder} will add any relevant repositories to the model resolver. In
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/component/ComponentWithCoordinates.java

    import org.gradle.api.artifacts.ModuleVersionIdentifier;
    
    /**
     * Represents a component that determines its publication coordinates.
     *
     * @since 4.7
     */
    public interface ComponentWithCoordinates extends SoftwareComponent {
        /**
         * The publication coordinates for this component.
         */
        ModuleVersionIdentifier getCoordinates();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 995 bytes
    - Viewed (0)
Back to top