Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ga (0.13 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/VersionsMetadataGeneratorFactory.java

    import org.eclipse.aether.deployment.DeployRequest;
    import org.eclipse.aether.impl.MetadataGenerator;
    import org.eclipse.aether.impl.MetadataGeneratorFactory;
    import org.eclipse.aether.installation.InstallRequest;
    
    /**
     * Maven GA level metadata generator factory.
     */
    @Named(VersionsMetadataGeneratorFactory.NAME)
    @Singleton
    public class VersionsMetadataGeneratorFactory implements MetadataGeneratorFactory {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/VersionsMetadata.java

    import org.apache.maven.api.metadata.Metadata;
    import org.apache.maven.api.metadata.Versioning;
    import org.eclipse.aether.artifact.Artifact;
    import org.eclipse.aether.artifact.ArtifactProperties;
    
    /**
     * Maven GA level metadata.
     */
    final class VersionsMetadata extends MavenMetadata {
    
        private final Artifact artifact;
    
        VersionsMetadata(Artifact artifact, Date timestamp) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 10:10:21 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelTransformerContext.java

         * @param groupId    the groupId
         * @param artifactId the artifactId
         * @return the model, otherwise {@code null}
         * @throws IllegalStateException if multiple versions of the same GA are part of the reactor
         */
        Model getRawModel(Path from, String groupId, String artifactId);
    
        /**
         * Locate the POM file inside the given directory.
         */
        Path locate(Path path);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/ReactorModelPool.java

        private final Map<GAKey, Set<Model>> modelsByGa = new ConcurrentHashMap<>();
    
        private final Map<Path, Model> modelsByPath = new ConcurrentHashMap<>();
    
        /**
         * Get the model by its GAV or (since 4.0.0) by its GA if there is only one.
         *
         * @param groupId never {@code null}
         * @param artifactId never {@code null}
         * @param version can be {@code null}
         * @return the matching model or {@code null}
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/VersionsMetadataGenerator.java

    import org.eclipse.aether.installation.InstallRequest;
    import org.eclipse.aether.metadata.Metadata;
    import org.eclipse.aether.util.ConfigUtils;
    
    /**
     * Maven GA level metadata generator.
     *
     * Version metadata contains list of existing baseVersions within this GA.
     */
    class VersionsMetadataGenerator implements MetadataGenerator {
    
        private final Map<Object, VersionsMetadata> versions;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.9K bytes
    - Viewed (0)
Back to top