Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for manageArtifactVersion (0.25 sec)

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

     * method (and the [yet to be done] addition of these methods to that
     * interface) has had a chance to propagate to all interested plugins.
     */
    @Deprecated
    public interface ResolutionListenerForDepMgmt {
        void manageArtifactVersion(Artifact artifact, Artifact replacement);
    
        void manageArtifactScope(Artifact artifact, Artifact replacement);
    
        void manageArtifactSystemPath(Artifact artifact, Artifact replacement);
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - 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

         * (and more information) is needed to be able to determine when and if the version and/or artifactScope changes.
         * See the two added methods, manageArtifactVersion and manageArtifactScope.
         */
        @Override
        public void manageArtifact(Artifact artifact, Artifact replacement) {
            String msg = indent + artifact;
            msg += " (";
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                        break;
                    case ResolutionListener.MANAGE_ARTIFACT_VERSION:
                        if (listener instanceof ResolutionListenerForDepMgmt asImpl) {
                            asImpl.manageArtifactVersion(node.getArtifact(), replacement);
                        } else {
                            listener.manageArtifact(node.getArtifact(), replacement);
                        }
                        break;
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
Back to top