- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 73 for phase (0.04 sec)
-
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Phase.java
*/ package org.apache.maven.plugin.lifecycle; /** * A phase mapping definition. * * @version $Revision$ $Date$ */ @SuppressWarnings("all") public class Phase implements java.io.Serializable { // --------------------------/ // - Class/Member Variables -/ // --------------------------/ /** * The ID of this phase, e.g., <code>generate-sources</code>. */ private String id;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/Lifecycles.java
public class Lifecycles { static Lifecycle.Phase phase(String name) { return new DefaultPhase(name, Collections.emptyList(), Collections.emptyList(), Collections.emptyList()); } static Lifecycle.Phase phase(String name, Lifecycle.Phase... phases) { return new DefaultPhase(name, Collections.emptyList(), Collections.emptyList(), asList(phases)); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Lifecycle.java
*/ public java.util.List<Phase> getPhases() { if (this.phases == null) { this.phases = new java.util.ArrayList<Phase>(); } return this.phases; } // -- java.util.List<Phase> getPhases() /** * Method removePhase. * * @param phase a phase object. */ public void removePhase(Phase phase) { getPhases().remove(phase);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Lifecycle.java
return Optional.empty(); } /** * A phase in the lifecycle. * * A phase is identified by its name. It also contains a list of plugins bound to that phase, * a list of {@link Link links}, and a list of sub-phases. This forms a tree of phases. */ interface Phase { // ====================== // Maven defined phases // ======================
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Sep 24 07:54:24 UTC 2024 - 5.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/Lifecycle.java
this.id = lifecycle.id(); this.phases = registry.computePhases(lifecycle).stream() .flatMap(p -> Stream.of(BEFORE + p, p, AFTER + p)) .toList(); this.defaultPhases = getDefaultPhases(lifecycle); } // <lifecycle> // <id>clean</id> // <phases> // <phase>pre-clean</phase> // <phase>clean</phase> // <phase>post-clean</phase>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.9K bytes - Viewed (0) -
api/maven-api-plugin/src/main/mdo/lifecycle.mdo
</field> <field> <name>phases</name> <version>1.0.0+</version> <description>The phase mappings for this lifecycle.</description> <association> <type>Phase</type> <multiplicity>*</multiplicity> </association> </field> </fields> </class> <class> <name>Phase</name> <version>1.0.0+</version>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Aug 29 05:48:54 UTC 2024 - 5.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java
} /** * Get lifecycle based on phase * * @param phase * @return */ public Lifecycle get(String phase) { return getPhaseToLifecycleMap().get(phase); } /** * We use this to map all phases to the lifecycle that contains it. This is used so that a user can specify the * phase they want to execute and we can easily determine what lifecycle we need to run.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.6K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/validation/duplicate-plugin-execution.xml
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Execute.java
@Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) @Inherited public @interface Execute { /** * Lifecycle phase to fork. Note that specifying a phase overrides specifying a goal. * @return the phase */ @Nonnull String phase() default ""; /** * Goal to fork. Note that specifying a phase overrides specifying a goal. The specified <code>goal</code> must be * another goal of the same plugin.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Apr 12 10:50:18 UTC 2024 - 2.2K bytes - Viewed (0) -
api/maven-api-plugin/pom.xml
<executions> <execution> <id>plugin</id> <goals> <goal>velocity</goal> </goals> <phase>generate-sources</phase> <configuration> <velocityBasedir>${project.basedir}/../../src/mdo</velocityBasedir> <version>2.0.0</version> <models>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Oct 19 18:11:20 UTC 2024 - 4.5K bytes - Viewed (0)