Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for manageArtifactSystemPath (0.19 seconds)

  1. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionListenerForDepMgmt.java

    @Deprecated
    public interface ResolutionListenerForDepMgmt {
        void manageArtifactVersion(Artifact artifact, Artifact replacement);
    
        void manageArtifactScope(Artifact artifact, Artifact replacement);
    
        void manageArtifactSystemPath(Artifact artifact, Artifact replacement);
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.5K bytes
    - Click Count (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java

                String msg = indent + artifact + " (applying artifactScope: " + replacement.getScope() + ")";
                logger.debug(msg);
            }
        }
    
        @Override
        public void manageArtifactSystemPath(Artifact artifact, Artifact replacement) {
            // only show msg if a change is actually taking place
            if (!replacement.getScope().equals(artifact.getScope())) {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 5.8K bytes
    - Click Count (0)
Back to Top