- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for getPhase (0.06 sec)
-
compat/maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilderTest.java
assertTrue(md.isInheritedByDefault()); assertFalse(md.isOnlineRequired()); assertTrue(md.isProjectRequired()); assertFalse(md.isThreadSafe()); assertEquals("package", md.getPhase()); assertEquals("org.apache.maven.plugin.jar.JarMojo", md.getImplementation()); assertEquals("antrun", md.getComponentConfigurator()); assertEquals("java", md.getLanguage());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java
this.setDependencyResolutionRequired(md.getDependencyResolution()); this.setComponentConfigurator(md.getConfigurator()); this.setInheritedByDefault(md.isInheritedByDefault()); this.setPhase(md.getPhase()); this.setOnlineRequired(md.isOnlineRequired()); this.setProjectRequired(md.isProjectRequired()); this.setSince(md.getSince()); this.setThreadSafe(true);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 21.7K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Lifecycle.java
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); } // -- void removePhase( 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) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java
Map<String, Lifecycle> phaseToLifecycleMap = new HashMap<>(); for (Lifecycle lifecycle : getLifeCycles()) { for (String phase : lifecycle.getPhases()) { // The first definition wins. Lifecycle original = phaseToLifecycleMap.put(phase, lifecycle); if (original != null && logger.isWarnEnabled()) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/Lifecycle.java
public String getId() { return id; } public org.apache.maven.api.Lifecycle getDelegate() { return lifecycle; } public List<String> getPhases() { return phases; } static Map<String, LifecyclePhase> getDefaultPhases(org.apache.maven.api.Lifecycle lifecycle) { Map<String, List<String>> goals = new HashMap<>();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.9K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java
if (deprecated != null) { mojo.setDeprecated(deprecated.getValue()); } String phase = c.getChild("phase").getValue(); if (phase != null) { mojo.setPhase(phase); } String executePhase = c.getChild("executePhase").getValue(); if (executePhase != null) { mojo.setExecutePhase(executePhase); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 19.4K bytes - Viewed (0)