Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for coordinates (0.16 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/ArtifactCoordinate.java

     */
    package org.apache.maven.api;
    
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Immutable;
    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * The {@code Coordinate} object is used to point to an {@link Artifact}
     * but the version may be specified as a range instead of an exact version.
     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface ArtifactCoordinate {
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultArtifactCoordinate.java

        private final @Nonnull org.eclipse.aether.artifact.Artifact coordinate;
    
        public DefaultArtifactCoordinate(
                @Nonnull InternalSession session, @Nonnull org.eclipse.aether.artifact.Artifact coordinate) {
            this.session = nonNull(session, "session");
            this.coordinate = nonNull(coordinate, "coordinate");
        }
    
        public org.eclipse.aether.artifact.Artifact getCoordinate() {
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 3K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultArtifactCoordinate.java

        private final @Nonnull org.eclipse.aether.artifact.Artifact coordinate;
    
        public DefaultArtifactCoordinate(
                @Nonnull InternalSession session, @Nonnull org.eclipse.aether.artifact.Artifact coordinate) {
            this.session = nonNull(session, "session");
            this.coordinate = nonNull(coordinate, "coordinate");
        }
    
        public org.eclipse.aether.artifact.Artifact getCoordinate() {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 3K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionResolver.java

         * to "1.0-20090208.132618-23" or "RELEASE"/"LATEST" to "2.0".
         *
         * @param session The repository session, must not be {@code null}.
         * @param artifactCoordinate The artifact coordinate for which the version needs to be resolved, must not be {@code null}
         * @return The version result, never {@code null}.
         * @throws VersionResolverException If the metaversion could not be resolved.
         */
        @Nonnull
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:54:53 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinateFactory.java

        @Nonnull
        default DependencyCoordinate create(@Nonnull Session session, @Nonnull ArtifactCoordinate coordinate) {
            return create(DependencyCoordinateFactoryRequest.build(session, coordinate));
        }
    
        @Nonnull
        default DependencyCoordinate create(@Nonnull Session session, @Nonnull org.apache.maven.api.Dependency dependency) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionRequest.java

    import org.apache.maven.settings.Mirror;
    import org.apache.maven.settings.Proxy;
    import org.apache.maven.settings.Server;
    
    /**
     * A resolution request allows you to either use an existing MavenProject, or a coordinate (gid:aid:version)
     * to process a POMs dependencies.
     *
     */
    @Deprecated
    public class ArtifactResolutionRequest implements RepositoryRequest {
        private static final String LS = System.lineSeparator();
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 8.2K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinateFactoryRequest.java

            return builder()
                    .session(nonNull(session, "session cannot be null"))
                    .groupId(nonNull(coordinate, "coordinate cannot be null").getGroupId())
                    .artifactId(coordinate.getArtifactId())
                    .version(coordinate.getVersion().asString())
                    .classifier(coordinate.getClassifier())
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Feb 05 09:42:51 GMT 2024
    - 9.6K bytes
    - Viewed (0)
Back to top