Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for v3Phase (0.05 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/internal/impl/Lifecycles.java

            private final String v3Phase;
            private final String v4Phase;
    
            DefaultAlias(String v3Phase, String v4Phase) {
                this.v3Phase = v3Phase;
                this.v4Phase = v4Phase;
            }
    
            @Override
            public String v3Phase() {
                return v3Phase;
            }
    
            @Override
            public String v4Phase() {
                return v4Phase;
            }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java

                        Lifecycle original = phaseToLifecycleMap.put(alias.v3Phase(), lifecycle);
                        if (original != null && logger.isWarnEnabled()) {
                            logger.warn(
                                    "Duplicated lifecycle phase {}. Defined in {} but also in {}",
                                    alias.v3Phase(),
                                    original.getId(),
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/Lifecycle.java

        }
    
        /**
         * A phase alias, mostly used to support the Maven 3 phases which are mapped
         * to dynamic phases in Maven 4.
         */
        interface Alias {
            String v3Phase();
    
            String v4Phase();
        }
    
        /**
         * A link from a phase to another phase, consisting of a type which can be
         * {@link Kind#BEFORE} or {@link Kind#AFTER}, and a {@link Pointer} to
         * another phase.
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Sep 24 07:54:24 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top