Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 208 for getgroups (0.05 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/project/ProjectSorter.java

                            project.getFile(),
                            "Project '" + projectId + "' is duplicated in the reactor");
                }
    
                String projectKey = ArtifactUtils.versionlessKey(project.getGroupId(), project.getArtifactId());
    
                Map<String, Vertex> vertices = vertexMap.computeIfAbsent(projectKey, k -> new HashMap<>(2, 1));
    
                vertices.put(project.getVersion(), graph.addVertex(projectId));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportingConverter.java

            return "maven-site-plugin".equals(plugin.getArtifactId())
                    && "org.apache.maven.plugins".equals(plugin.getGroupId());
        }
    
        private Xpp3Dom convert(ReportPlugin plugin) {
            Xpp3Dom dom = new Xpp3Dom("reportPlugin", plugin.getLocation(""));
    
            addDom(dom, "groupId", plugin.getGroupId(), plugin.getLocation("groupId"));
            addDom(dom, "artifactId", plugin.getArtifactId(), plugin.getLocation("artifactId"));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 07:09:12 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/plugin/prefix/internal/DefaultPluginPrefixResult.java

            groupId = plugin.getGroupId();
            artifactId = plugin.getArtifactId();
        }
    
        DefaultPluginPrefixResult(String groupId, String artifactId, ArtifactRepository repository) {
            this.groupId = groupId;
            this.artifactId = artifactId;
            this.repository = repository;
        }
    
        @Override
        public String getGroupId() {
            return groupId;
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

             * plugins only check for null, so be sure to nullify an empty classifier.
             */
            org.apache.maven.artifact.Artifact result = new org.apache.maven.artifact.DefaultArtifact(
                    artifact.getGroupId(),
                    artifact.getArtifactId(),
                    artifact.getVersion(),
                    null,
                    artifact.getProperty(ArtifactProperties.TYPE, artifact.getExtension()),
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Sep 04 18:33:16 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  5. compat/maven-compat/src/main/java/org/apache/maven/repository/MavenArtifactMetadata.java

        String groupId;
        String artifactId;
        String version;
        String classifier;
        String type;
        String scope;
    
        transient Object datum;
    
        public String getGroupId() {
            return groupId;
        }
    
        public void setGroupId(String groupId) {
            this.groupId = groupId;
        }
    
        public String getArtifactId() {
            return artifactId;
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/plugin/prefix/internal/DefaultPluginPrefixResolver.java

                    .flatMap(container -> container != null ? container.getPlugins().stream() : Stream.empty())
                    .filter(p -> !request.getPluginGroups().contains(p.getGroupId()))
                    .collect(Collectors.groupingBy(
                            Plugin::getGroupId,
                            LinkedHashMap::new,
                            Collectors.mapping(Plugin::getArtifactId, Collectors.toSet())));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 17 13:14:10 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  7. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/ArtifactDescriptorUtils.java

            Artifact pomArtifact = artifact;
    
            if (!pomArtifact.getClassifier().isEmpty() || !"pom".equals(pomArtifact.getExtension())) {
                pomArtifact =
                        new DefaultArtifact(artifact.getGroupId(), artifact.getArtifactId(), "pom", artifact.getVersion());
            }
    
            return pomArtifact;
        }
    
        /**
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 4K bytes
    - Viewed (0)
  8. compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/ArtifactNotFoundException.java

            super(message, artifact, remoteRepositories);
        }
    
        public ArtifactNotFoundException(String message, Artifact artifact) {
            this(
                    message,
                    artifact.getGroupId(),
                    artifact.getArtifactId(),
                    artifact.getVersion(),
                    artifact.getType(),
                    artifact.getClassifier(),
                    null,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/Maven2DependenciesValidator.java

                    .map(Dependency::getArtifact)
                    .filter(d -> "org.apache.maven".equals(d.getGroupId()))
                    .filter(d -> !DefaultPluginValidationManager.EXPECTED_PROVIDED_SCOPE_EXCLUSIONS_GA.contains(
                            d.getGroupId() + ":" + d.getArtifactId()))
                    .map(Artifact::getVersion)
                    .filter(v -> v.startsWith("2."))
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/PluginsMetadataGenerator.java

                Metadata metadata = it.next();
                if (metadata instanceof PluginsMetadata pluginsMetadata) {
                    it.remove();
                    processedPlugins.put(pluginsMetadata.getGroupId(), pluginsMetadata);
                }
            }
        }
    
        @Override
        public Collection<? extends Metadata> prepare(Collection<? extends Artifact> artifacts) {
            return Collections.emptyList();
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Mar 25 09:45:07 UTC 2025
    - 7.8K bytes
    - Viewed (0)
Back to top