- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 196 for lifecycles (0.11 sec)
-
impl/maven-core/src/main/java/org/apache/maven/internal/impl/Lifecycles.java
} static Lifecycle.Phase phase( String name, Lifecycle.Link link1, Lifecycle.Link link2, Lifecycle.Link link3, Lifecycle.Phase... phases) { return new DefaultPhase(name, Collections.emptyList(), asList(link1, link2, link3), asList(phases)); } static Lifecycle.Phase phase(String name, Collection<Lifecycle.Link> links, Lifecycle.Phase... 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/LifecycleConfiguration.java
* * @param lifecycle a lifecycle object. */ public void removeLifecycle(Lifecycle lifecycle) { getLifecycles().remove(lifecycle); } // -- void removeLifecycle( Lifecycle ) /** * Set the lifecycles field. * * @param lifecycles a lifecycles object. */ public void setLifecycles(java.util.List<Lifecycle> lifecycles) { this.lifecycles = lifecycles;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java
*/ public Map<String, Lifecycle> getPhaseToLifecycleMap() { if (logger.isDebugEnabled() && !lifecyclesPrinted) { for (Lifecycle lifecycle : getLifeCycles()) { logger.debug("Lifecycle {}", lifecycle); } lifecyclesPrinted = true; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Lifecycle.java
* {@code default} lifecycle being the most commonly used for project builds. * * @since 4.0.0 */ @Experimental @Immutable public interface Lifecycle extends ExtensibleEnum { // ========================= // Maven defined lifecycles // ========================= String CLEAN = "clean"; String DEFAULT = "default"; String SITE = "site";
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Sep 24 07:54:24 UTC 2024 - 5.3K bytes - Viewed (0) -
api/maven-api-plugin/src/main/mdo/lifecycle.mdo
xml.namespace="http://maven.apache.org/LIFECYCLE/${version}" xml.schemaLocation="http://maven.apache.org/xsd/lifecycle-${version}.xsd"> <id>lifecycle</id> <name>Lifecycle</name> <description> Configuration of custom lifecycle mappings for the plugin, as generally stored in {@code META-INF/maven/lifecycle.xml} in a plugin's jar artifact. </description> <classes>
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/LifecycleMappingDelegate.java
import org.apache.maven.project.MavenProject; /** * Lifecycle mapping delegate component interface. Calculates project build execution plan given {@link Lifecycle} and * lifecycle phase. Standard lifecycles use plugin execution {@code <phase>} or mojo default lifecycle phase to * calculate the execution plan, but custom lifecycles can use alternative mapping strategies. * <p>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java
import static org.apache.maven.api.Lifecycle.Phase.TEST_RESOURCES; import static org.apache.maven.api.Lifecycle.Phase.TEST_SOURCES; import static org.apache.maven.api.Lifecycle.Phase.UNIT_TEST; import static org.apache.maven.api.Lifecycle.Phase.VALIDATE; import static org.apache.maven.api.Lifecycle.Phase.VERIFY; import static org.apache.maven.internal.impl.Lifecycles.after; import static org.apache.maven.internal.impl.Lifecycles.alias;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 19.4K bytes - Viewed (0) -
impl/maven-core/lifecycle-executor.txt
We have a lifecycle mapping for the packaging of *jar* below. You see that for this packaging we have a *default* lifecycle and a list of phases where each phase is a comma separated list of goals to run and they are in the form groupId:artifactId:version. <configuration> <lifecycles> <lifecycle> <id>default</id> <phases> <process-resources>org.apache.maven.plugins:maven-resources-plugin:resources</process-resources>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleExecutor.java
/** * A facade that provides lifecycle services to components outside Maven core. * */ public interface LifecycleExecutor { // USED BY MAVEN HELP PLUGIN @Deprecated String ROLE = LifecycleExecutor.class.getName(); // For a given project packaging find all the plugins that are bound to any registered
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/LifecycleProvider.java
import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.plugin.descriptor.lifecycle.Lifecycle; /** * Interface that can be provided by the plugin to wire in custom lifecycles * leveraged using the {@link org.apache.maven.api.plugin.annotations.Execute} * annotation. If a {@code META-INF/maven/lifecycle.xml} file is packaged * in the plugin, Maven will provide a default implementation that will parse
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Feb 28 23:54:53 UTC 2024 - 1.5K bytes - Viewed (0)