- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for addMojo (0.07 seconds)
-
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java
} catch (CloneNotSupportedException e) { throw new UnsupportedOperationException(e); } } public void addMojos(List<MojoDescriptor> mojos) throws DuplicateMojoDescriptorException { for (MojoDescriptor mojoDescriptor : mojos) { addMojo(mojoDescriptor); } } private volatile org.apache.maven.api.plugin.descriptor.PluginDescriptor pluginDescriptorV4;
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 16.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildStep.java
} else { return false; } } public void skip() { skip.set(true); mojos.clear(); } public void addMojo(MojoExecution mojo, int priority) { if (!skip.get()) { mojos.computeIfAbsent(priority, k -> new LinkedHashMap<>()) .put(mojo.getGoal() + ":" + mojo.getExecutionId(), mojo); }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Apr 30 16:21:08 GMT 2025 - 4.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
MojoExecution mojoExecution = new MojoExecution(mojoDescriptor, execution.getId()); mojoExecution.setLifecyclePhase(phase); n.addMojo(mojoExecution, execution.getPriority()); if (mojoDescriptor.getDependencyCollectionRequired() != null
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Oct 16 06:12:36 GMT 2025 - 55.1K bytes - Click Count (0)