Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for manageArtifactSystemPath (0.12 sec)

  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);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.5K bytes
    - Viewed (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);
            }
        }
    
        public void manageArtifactSystemPath(Artifact artifact, Artifact replacement) {
            // only show msg if a change is actually taking place
            if (!replacement.getScope().equals(artifact.getScope())) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                        if (listener instanceof ResolutionListenerForDepMgmt) {
                            ResolutionListenerForDepMgmt asImpl = (ResolutionListenerForDepMgmt) listener;
                            asImpl.manageArtifactSystemPath(node.getArtifact(), replacement);
                        } else {
                            listener.manageArtifact(node.getArtifact(), replacement);
                        }
                        break;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 36.7K bytes
    - Viewed (0)
Back to top