Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 219 for coordinatesOf (0.24 sec)

  1. platforms/documentation/docs/src/snippets/maven-publish/specify-relocation/groovy/library/build.gradle

            relocation(MavenPublication) {
                pom {
                    // Old artifact coordinates
                    groupId = "com.example"
                    artifactId = "lib"
                    version = "2.0.0"
    
                    distributionManagement {
                        relocation {
                            // New artifact coordinates
                            groupId = "com.new-example"
                            artifactId = "lib"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/VersionMappingComponentDependencyResolver.java

            ModuleVersionIdentifier coordinates = projectDependencyResolver.resolveComponent(ModuleVersionIdentifier.class, identityPath);
            ModuleVersionIdentifier resolved = maybeResolveVersion(coordinates.getGroup(), coordinates.getName(), identityPath);
            return ResolvedCoordinates.create(resolved != null ? resolved : coordinates);
        }
    
        @Nullable
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publication/DefaultMavenPublicationTest.groovy

            then:
            publication.name == "pub-name"
            publication.pom.coordinates.groupId.get() == "group"
            publication.pom.coordinates.artifactId.get() == "name"
            publication.pom.coordinates.version.get() == "version"
        }
    
        def "publication coordinates are live"() {
            when:
            def publication = createPublication()
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/projects/future-schema-model-version-pom.xml

    under the License.
    -->
    
    <project>
        <modelVersion>4.999.999</modelVersion>
        <!-- this should be a fake "future" version that only has modelVersion understood by us -->
        <coordinates>tests.project:future-model-version</coordinates>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 03 20:33:44 UTC 2019
    - 993 bytes
    - Viewed (0)
  5. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishMultiProjectIntegTest.groovy

    Found the following publications in project ':project2':
      - Ivy publication 'ivy' with coordinates org.gradle.test:project2:2.0
      - Ivy publication 'extraComponent' with coordinates extra.org:extra-module:extra
      - Ivy publication 'extra' with coordinates extra.org:extra-module-2:extra"""
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_capability_conflict.adoc

    In our example, it means that different bindings of a logging framework provide the same capability.
    
    == Capability coordinates
    
    A _capability_ is defined by a `(group, module, version)` triplet.
    Each component defines an implicit capability corresponding to its GAV coordinates (group, artifact, version).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/AbstractCppPublishingIntegrationTest.groovy

                apiDependencies.eachWithIndex { dependency, index ->
                    def coordinates = dependency.split(':')
                    assert mainApi.dependencies[index].group == coordinates[0]
                    assert mainApi.dependencies[index].module == coordinates[1]
                    assert mainApi.dependencies[index].version == coordinates[2]
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/LineInFileLocation.java

     */
    
    package org.gradle.tooling.events.problems;
    
    import org.gradle.api.Incubating;
    
    /**
     * A basic location pointing to a specific part of a file using line number, column, and length for coordinates.
     * <p>
     * The line and column coordinates are one-indexed so that they can be easily matched to the content of a UI editor interface.
     *
     * @since 8.6
     */
    @Incubating
    public interface LineInFileLocation extends FileLocation {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/OffsetInFileLocation.java

     */
    
    package org.gradle.tooling.events.problems;
    
    import org.gradle.api.Incubating;
    
    /**
     * A basic location pointing to a specific part of a file using a global offset and length for coordinates.
     * <p>
     * The coordinates are expected to be zero indexed.
     *
     * @since 8.6
     */
    @Incubating
    public interface OffsetInFileLocation extends FileLocation {
    
        /**
         * The global offset from the beginning of the file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/catalog/parser/TomlCatalogFileParser.java

            Object coordinates = librariesTable.get(alias);
            if (coordinates instanceof String) {
                List<String> split = SPLITTER.splitToList((String) coordinates);
                if (split.size() == 2) {
                    String id = notEmpty(split.get(0), "id", alias);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 29.4K bytes
    - Viewed (0)
Back to top