Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 232 for getGroupSid (0.27 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListener.java

         */
        static boolean isInScope(Artifact artifact, Artifact nodeArtifact) {
            return Objects.equals(artifact.getGroupId(), nodeArtifact.getGroupId())
                    && Objects.equals(artifact.getArtifactId(), nodeArtifact.getArtifactId())
                    && Objects.equals(artifact.getVersion(), nodeArtifact.getVersion());
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 12 11:08:37 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/PluginNotFoundException.java

        public PluginNotFoundException(Plugin plugin, ArtifactNotFoundException e) {
            super(
                    "Plugin could not be found - check that the goal name is correct: " + e.getMessage(),
                    e.getGroupId(),
                    e.getArtifactId(),
                    e.getVersion(),
                    "maven-plugin",
                    null,
                    e.getRemoteRepositories(),
                    null,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/version/DefaultPluginVersionRequest.java

                Plugin plugin, RepositorySystemSession session, List<RemoteRepository> repositories) {
            setGroupId(plugin.getGroupId());
            setArtifactId(plugin.getArtifactId());
    
            setRepositorySession(session);
    
            setRepositories(repositories);
        }
    
        public String getGroupId() {
            return groupId;
        }
    
        public DefaultPluginVersionRequest setGroupId(String groupId) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyCoordinateFactory.java

                        session,
                        new org.eclipse.aether.graph.Dependency(
                                new org.eclipse.aether.artifact.DefaultArtifact(
                                        request.getGroupId(),
                                        request.getArtifactId(),
                                        request.getClassifier(),
                                        request.getExtension(),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/Artifact.java

         * The identifier is composed of groupId, artifactId, extension, classifier, and version.
         *
         * @return the unique identifier
         */
        @Nonnull
        default String key() {
            return getGroupId()
                    + ':'
                    + getArtifactId()
                    + ':'
                    + getExtension()
                    + (getClassifier().isEmpty() ? "" : ":" + getClassifier())
                    + ':'
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 15:48:33 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/ArtifactCoordinate.java

     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface ArtifactCoordinate {
    
        /**
         * The groupId of the artifact.
         *
         * @return the groupId
         */
        @Nonnull
        String getGroupId();
    
        /**
         * The artifactId of the artifact.
         *
         * @return the artifactId
         */
        @Nonnull
        String getArtifactId();
    
        /**
         * The classifier of the artifact.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                        "parent.groupId", problems, Severity.FATAL, Version.BASE, parent.getGroupId(), parent);
    
                validateStringNotEmpty(
                        "parent.artifactId", problems, Severity.FATAL, Version.BASE, parent.getArtifactId(), parent);
    
                if (equals(parent.getGroupId(), m.getGroupId()) && equals(parent.getArtifactId(), m.getArtifactId())) {
                    addViolation(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/project/LegacyLocalRepositoryManager.java

            return repository.getId();
        }
    
        private String getPath(Metadata metadata, String repositoryKey) {
            StringBuilder path = new StringBuilder(128);
    
            if (!metadata.getGroupId().isEmpty()) {
                path.append(metadata.getGroupId().replace('.', '/')).append('/');
    
                if (!metadata.getArtifactId().isEmpty()) {
                    path.append(metadata.getArtifactId()).append('/');
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. maven-artifact/src/main/java/org/apache/maven/artifact/DefaultArtifact.java

        // ----------------------------------------------------------------------
    
        @Override
        public String toString() {
            StringBuilder sb = new StringBuilder();
            if (getGroupId() != null) {
                sb.append(getGroupId());
                sb.append(':');
            }
            appendArtifactTypeClassifierString(sb);
            sb.append(':');
            if (getBaseVersionInternal() != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 19:20:54 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/relocation/UserPropertiesArtifactRelocationSource.java

                    }
                    Artifact result = new RelocatedArtifact(
                            original,
                            isAny(relocation.target.getGroupId()) ? null : relocation.target.getGroupId(),
                            isAny(relocation.target.getArtifactId()) ? null : relocation.target.getArtifactId(),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 18 12:26:49 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top