Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 120 for getArtifactId (0.19 sec)

  1. api/maven-api-model/src/main/mdo/maven.mdo

                return java.util.Objects.equals(e.getArtifactId(), getArtifactId())
                    && java.util.Objects.equals(e.getGroupId(), getGroupId())
                    && java.util.Objects.equals(e.getVersion(), getVersion());
            }
        }
    
        /**
         * @see java.lang.Object#hashCode()
         */
        public int hashCode() {
            return java.util.Objects.hash(getArtifactId(), getGroupId(), getVersion());
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Oct 09 11:07:31 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelProblemUtils.java

            String groupId = model.getGroupId();
            if (groupId == null && model.getParent() != null) {
                groupId = model.getParent().getGroupId();
            }
    
            String artifactId = model.getArtifactId();
    
            String version = model.getVersion();
            if (version == null && model.getParent() != null) {
                version = model.getParent().getVersion();
            }
            if (version == null) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionNode.java

                        } else {
                            throw new OverConstrainedVersionException(
                                    "Unable to get a selected Version for " + artifact.getArtifactId(), artifact);
                        }
                    }
    
                    ids.add(0, artifact);
                    node = node.parent;
                }
                trail = ids;
            }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

    public interface Project {
    
        /**
         * Returns the project groupId.
         */
        @Nonnull
        String getGroupId();
    
        /**
         * Returns the project artifactId.
         */
        @Nonnull
        String getArtifactId();
    
        /**
         * Returns the project version.
         */
        @Nonnull
        String getVersion();
    
        /**
         * Returns the project packaging.
         * <p>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Sat Sep 28 09:03:24 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java

                    return null;
                }
            }
        }
    
        File getTouchfile(Artifact artifact) {
            StringBuilder sb = new StringBuilder(128);
            sb.append(artifact.getArtifactId());
            sb.append('-').append(artifact.getBaseVersion());
            if (artifact.getClassifier() != null) {
                sb.append('-').append(artifact.getClassifier());
            }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

            } catch (InvalidVersionSpecificationException e) {
                return null;
            }
    
            Artifact artifact = createDependencyArtifactX(
                    d.getGroupId(),
                    d.getArtifactId(),
                    versionRange,
                    d.getType(),
                    d.getClassifier(),
                    d.getScope(),
                    d.isOptional());
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  7. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                            .filter(project -> firstFailedProject.getArtifactId().equals(project.getArtifactId()))
                            .count()
                    > 1;
    
            if (hasOverlappingArtifactId) {
                return firstFailedProject.getGroupId() + ":" + firstFailedProject.getArtifactId();
            }
    
            return ":" + firstFailedProject.getArtifactId();
        }
    
        private void logSummary(
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 76.8K bytes
    - Viewed (0)
  8. api/maven-api-metadata/src/main/mdo/metadata.mdo

                    }
                }
    
                if ( !found )
                {
                    Plugin mappedPlugin = new Plugin();
    
                    mappedPlugin.setArtifactId( plugin.getArtifactId() );
    
                    mappedPlugin.setPrefix( plugin.getPrefix() );
    
                    mappedPlugin.setName( plugin.getName() );
    
                    addPlugin( mappedPlugin );
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/DefaultMaven.java

            Map<String, List<File>> collisions = new LinkedHashMap<>();
    
            for (MavenProject project : projects) {
                String projectId = ArtifactUtils.key(project.getGroupId(), project.getArtifactId(), project.getVersion());
    
                MavenProject collision = index.get(projectId);
    
                if (collision == null) {
                    index.put(projectId, project);
                } else {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 27.5K bytes
    - Viewed (1)
  10. test-site/activator-launch-1.3.2.jar

    java.util.List); public final String getScope(); public final String getGroupId(); public final String getArtifactId(); public final String getVersion(); public final java.util.List getExcludedModules(); } org/apache/ivy/plugins/parser/m2/PomDependencyMgt.class package org.apache.ivy.plugins.parser.m2; public abstract interface PomDependencyMgt { public abstract String getGroupId(); public abstract String getArtifactId(); public abstract String getVersion(); public abstract String getScope(); public abstract...
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (0)
Back to top