Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

        @Override
        public void omitForNearer(Artifact omitted, Artifact kept) {}
    
        @Override
        public void omitForCycle(Artifact omitted) {}
    
        @Override
        public void updateScopeCurrentPom(Artifact artifact, String scope) {}
    
        @Override
        public void updateScope(Artifact artifact, String scope) {}
    
        @Override
        public void manageArtifact(Artifact artifact, Artifact replacement) {}
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionListener.java

         *
         * @param artifact     current node artifact, the one in the first level pom
         * @param ignoredScope artifactScope that was ignored because artifact was in first level pom
         */
        void updateScopeCurrentPom(Artifact artifact, String ignoredScope);
    
        void selectVersionFromRange(Artifact artifact);
    
        void restrictRange(Artifact artifact, Artifact replacement, VersionRange newRange);
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sun Mar 30 23:08:36 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java

            }
        }
    
        @Override
        public void omitForCycle(Artifact omitted) {
            logger.debug(indent + omitted + " (removed - causes a cycle in the graph)");
        }
    
        @Override
        public void updateScopeCurrentPom(Artifact artifact, String ignoredScope) {
            logger.debug(indent + artifact + " (not setting artifactScope to: " + ignoredScope + "; local artifactScope "
                    + artifact.getScope() + " wins)");
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 5.8K bytes
    - Viewed (0)
Back to top