Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for getRelocations (0.35 sec)

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

            }
    
            depRequest.setRoot(node);
    
            if (logger.isWarnEnabled()) {
                for (DependencyNode child : node.getChildren()) {
                    if (!child.getRelocations().isEmpty()) {
                        org.eclipse.aether.artifact.Artifact artifact =
                                child.getDependency().getArtifact();
                        String message =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginDependenciesResolver.java

                    dependenciesValidator.validate(session, pluginArtifact, result);
                }
    
                pluginArtifact = result.getArtifact();
    
                if (logger.isWarnEnabled() && !result.getRelocations().isEmpty()) {
                    String message =
                            pluginArtifact instanceof org.apache.maven.internal.impl.resolver.RelocatedArtifact relocated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. maven-model/src/main/java/org/apache/maven/model/InputLocation.java

            this.columnNumber = location.getColumnNumber();
            this.source = location.getSource() != null ? new InputSource(location.getSource()) : null;
            this.locations = location.getLocations().isEmpty()
                    ? null
                    : location.getLocations().entrySet().stream()
                            .collect(Collectors.toMap(
                                    e -> e.getKey(),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Oct 19 07:06:15 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalBasicProblemDetailsVersion3.java

        List<InternalSolution> getSolutions();
    
        @Nullable
        InternalDetails getDetails();
    
        @Nullable
        InternalContextualLabel getContextualLabel();
    
        List<InternalLocation> getLocations();
    
        @Nullable
        InternalFailure getFailure();
    
        InternalAdditionalData getAdditionalData();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:50:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/MavenPomDistributionManagementInternal.java

    import javax.annotation.Nullable;
    
    public interface MavenPomDistributionManagementInternal extends MavenPomDistributionManagement {
    
        @Nullable
        MavenPomRelocation getRelocation();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 992 bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/internal/DynamicProblemOperationContext.java

        ) {
            super(internalDescriptor, parent);
        }
    
        @Override
        public Details getDetails() {
            throw new UnsupportedOperationException();
        }
    
        @Override
        public List<Location> getLocations() {
            throw new UnsupportedOperationException();
        }
    
        @Override
        public List<Solution> getSolutions() {
            throw new UnsupportedOperationException();
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 12:26:28 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/problem/InternalBasicProblemDetails.java

        InternalAdditionalData getAdditionalData();
    
        InternalLabel getLabel();
    
        @Nullable
        InternalDetails getDetails();
    
        InternalSeverity getSeverity();
    
        List<InternalLocation> getLocations();
    
        @Nullable
        InternalDocumentationLink getDocumentationLink();
    
        List<InternalSolution> getSolutions();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 07:53:04 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/SingleProblemEvent.java

         * @since 8.8
         */
        Details getDetails();
    
        /**
         * Returns the locations associated with this problem.
         *
         * @return the locations
         * @since 8.8
         */
        List<Location> getLocations();
    
        /**
         * Returns the list of solutions.
         *
         * @return the solutions
         * @since 8.8
         */
        List<Solution> getSolutions();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/DefaultMavenPomDistributionManagement.java

                relocation = objectFactory.newInstance(DefaultMavenPomRelocation.class, objectFactory);
            }
            action.execute(relocation);
        }
    
        @Override
        public MavenPomRelocation getRelocation() {
            return relocation;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalProblemContextDetails.java

    import java.util.List;
    
    @NonNullApi
    public interface InternalProblemContextDetails {
        InternalAdditionalData getAdditionalData();
        @Nullable
        InternalDetails getDetails();
    
        List<InternalLocation> getLocations();
    
        List<InternalSolution> getSolutions();
    
        @Nullable
        InternalFailure getFailure();
    
        @Nullable
        InternalContextualLabel getContextualLabel();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:50:20 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top