Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for manageArtifactVersion (0.69 sec)

  1. 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)
  2. 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