Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for manageArtifactVersion (0.26 sec)

  1. 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);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.5K bytes
    - Viewed (0)
  2. 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.
         */
        public void manageArtifact(Artifact artifact, Artifact replacement) {
            String msg = indent + artifact;
            msg += " (";
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 5.6K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionListener.java

        @Deprecated
        void manageArtifact(Artifact artifact, Artifact replacement);
    
        // TODO Use the following two instead of manageArtifact
        // TODO Remove ResolutionListenerDM interface
    
        // void manageArtifactVersion( Artifact artifact, Artifact replacement );
    
        // void manageArtifactScope( Artifact artifact, Artifact replacement );
    
        void omitForCycle(Artifact artifact);
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 3K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                        if (listener instanceof ResolutionListenerForDepMgmt) {
                            ResolutionListenerForDepMgmt asImpl = (ResolutionListenerForDepMgmt) listener;
                            asImpl.manageArtifactVersion(node.getArtifact(), replacement);
                        } else {
                            listener.manageArtifact(node.getArtifact(), replacement);
                        }
                        break;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 36.7K bytes
    - Viewed (0)
Back to top